feat(client): profile-wip

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit is contained in:
2026-01-02 15:58:17 +08:00
parent 67e22eb793
commit a80c3cd1dd
18 changed files with 272 additions and 59 deletions

21
client/src/lib/navData.ts Normal file
View File

@@ -0,0 +1,21 @@
import {
IconDashboard,
IconUser,
} from '@tabler/icons-react';
export const navData = {
navMain: [
{
title: '工作台',
url: '/',
icon: IconDashboard,
},
],
navSecondary: [
{
title: '个人资料',
url: '/profile',
icon: IconUser,
},
],
};