feat: 增加本地测评档案与长期追踪

This commit is contained in:
2026-06-23 00:21:07 +02:00
parent fdfbfa063f
commit c8d5a918cf
19 changed files with 1509 additions and 14 deletions
+8 -1
View File
@@ -2,7 +2,7 @@
import Link from 'next/link';
import { usePathname } from 'next/navigation';
import { ClipboardList } from 'lucide-react';
import { ClipboardList, FolderClock } from 'lucide-react';
import { useScopedI18n } from '@/locales/client';
export function Navbar() {
@@ -36,6 +36,13 @@ export function Navbar() {
>
{t('questionsList')}
</Link>
<Link
href="/records"
className={`${pathname.startsWith('/records') ? 'font-medium' : 'text-muted-foreground'} flex items-center gap-1.5 hover:text-foreground transition-colors`}
>
<FolderClock className="h-4 w-4" />
</Link>
</nav>
</div>
</header>