This commit is contained in:
eric
2026-03-09 01:44:13 -05:00
parent 8eef28536e
commit 7638e4032e
18 changed files with 1038 additions and 264 deletions

25
config/nav.config.ts Normal file
View File

@@ -0,0 +1,25 @@
/**
* 导航链接配置
*/
export interface NavLink {
labelKey: "cities" | "dashboard" | "travel" | "community" | "tools" | "ai" | "gigs" | "pricing" | "explore";
icon: string;
href: string;
}
export const NAV_LINKS: NavLink[] = [
{ labelKey: "cities", icon: "🏙️", href: "/" },
{ labelKey: "dashboard", icon: "📍", href: "/dashboard" },
{ labelKey: "travel", icon: "✈️", href: "/meetups" },
{ labelKey: "community", icon: "💬", href: "/dating" },
{ labelKey: "tools", icon: "📊", href: "/tools" },
{ labelKey: "ai", icon: "🤖", href: "/ai" },
{ labelKey: "gigs", icon: "💰", href: "/gigs" },
{ labelKey: "pricing", icon: "👑", href: "/pricing" },
{ labelKey: "explore", icon: "🎒", href: "/#community" },
];
export function getNavLinks() {
return NAV_LINKS;
}