Files
ReisaAdmin/reijm-read/src/config/navigation.ts
2025-09-30 12:54:29 +08:00

12 lines
280 B
TypeScript

export interface Tab {
id: string;
label: string;
icon: string;
}
export const tabs: Tab[] = [
{ id: "projects", label: "项目展示", icon: "🎨" },
{ id: "tools", label: "在线工具", icon: "🛠" },
{ id: "bookmarks", label: "网址导航", icon: "🔖" },
];