Feat: Switch the root route to the new page #3221 (#9560)

### What problem does this PR solve?

Feat: Switch the root route to the new page #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-08-19 17:41:03 +08:00
committed by GitHub
parent d5729e598f
commit b8bfbac2e5
12 changed files with 265 additions and 164 deletions

View File

@ -10,11 +10,12 @@ type ApplicationCardProps = {
title: string;
update_time: number;
};
onClick?(): void;
};
export function ApplicationCard({ app }: ApplicationCardProps) {
export function ApplicationCard({ app, onClick }: ApplicationCardProps) {
return (
<Card className="w-[264px]">
<Card className="w-[264px]" onClick={onClick}>
<CardContent className="p-2.5 group flex justify-between">
<div className="flex items-center gap-2.5">
<RAGFlowAvatar