's'
This commit is contained in:
25
config/nav.config.ts
Normal file
25
config/nav.config.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user