33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
/**
|
|
* 导航链接配置
|
|
*/
|
|
|
|
export interface NavLink {
|
|
labelKey: "cities" | "guide" | "dashboard" | "travel" | "community" | "tools" | "ai" | "gigs" | "pricing" | "explore";
|
|
icon: string;
|
|
href: string;
|
|
/** 顶部导航暂时隐藏;改回 false 或删除即可恢复 */
|
|
hidden?: boolean;
|
|
}
|
|
|
|
export const NAV_LINKS: NavLink[] = [
|
|
{ labelKey: "cities", icon: "🏙️", href: "/", hidden: true },
|
|
{ labelKey: "guide", icon: "🧭", href: "/digital", hidden: true },
|
|
{ labelKey: "dashboard", icon: "📍", href: "/dashboard", hidden: true },
|
|
{ labelKey: "travel", icon: "✈️", href: "/meetups", hidden: true },
|
|
{ labelKey: "community", icon: "💬", href: "/dating", hidden: true },
|
|
{ labelKey: "tools", icon: "📊", href: "/tools", hidden: true },
|
|
{ labelKey: "ai", icon: "🤖", href: "/ai", hidden: true },
|
|
{ labelKey: "gigs", icon: "💰", href: "/gigs", hidden: true },
|
|
{ labelKey: "pricing", icon: "👑", href: "/pricing", hidden: true },
|
|
{ labelKey: "explore", icon: "🎒", href: "/#community", hidden: true },
|
|
];
|
|
|
|
export function getNavLinks() {
|
|
return NAV_LINKS.filter((link) => !link.hidden);
|
|
}
|
|
|
|
export function getAllNavLinks() {
|
|
return NAV_LINKS;
|
|
}
|