26 lines
815 B
TypeScript
26 lines
815 B
TypeScript
/**
|
|
* 导航链接配置
|
|
*/
|
|
|
|
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;
|
|
}
|