/** Site-wide navigation โ€” used by Navbar โ€œAll pagesโ€ dropdown. */ export type SiteNavItem = { label: string; href: string; icon: string }; export type SiteNavGroup = { title: string; items: SiteNavItem[] }; export const SITE_NAV_GROUPS: SiteNavGroup[] = [ { title: "Hub & account", items: [ { label: "Hub", href: "/", icon: "โŒ‚" }, { label: "Dashboard", href: "/dashboard", icon: "๐Ÿ“Š" }, { label: "Sign in", href: "/sign-in", icon: "๐Ÿ”‘" }, { label: "Register", href: "/sign-up", icon: "โœŽ" }, { label: "Add funds (BTC โ†’ USD)", href: "/account/add-funds", icon: "โ‚ฟ" }, { label: "Onion mirrors", href: "/account/hidden-services", icon: "๐Ÿง…" }, ], }, { title: "Commerce", items: [ { label: "Dark Bazaar (market)", href: "/market", icon: "๐Ÿ“ˆ" }, { label: "Checkout", href: "/checkout", icon: "๐Ÿ›’" }, { label: "Wallets & catalog", href: "/wallets", icon: "๐Ÿ‘›" }, { label: "Vendor hall", href: "/vendors", icon: "๐Ÿช" }, { label: "Apply as vendor", href: "/vendor/apply", icon: "๐Ÿ“‹" }, { label: "Floor analytics", href: "/market/analytics", icon: "๐Ÿ“‰" }, { label: "Operations", href: "/market/operations", icon: "โš™๏ธ" }, { label: "Buyer intel", href: "/market/intel", icon: "๐Ÿ”" }, { label: "Escrow & trust", href: "/market/trust", icon: "๐Ÿค" }, ], }, { title: "Community", items: [ { label: "Forum", href: "/forum", icon: "โ—†" }, { label: "Messages", href: "/messages", icon: "๐Ÿ’ฌ" }, { label: "Chatter", href: "/chatter", icon: "๐Ÿ“ก" }, { label: "Submit post", href: "/forum/submit", icon: "โž•" }, { label: "Sanctum", href: "/sanctuary", icon: "๐Ÿ›ก๏ธ" }, { label: "Inner circle", href: "/inner-circle", icon: "โ—Ž" }, ], }, { title: "Exchange & barter", items: [ { label: "Soul Trade", href: "/exchange", icon: "๐Ÿ“ฐ" }, { label: "Exchange ledger", href: "/exchange/ledger", icon: "๐Ÿ“’" }, { label: "Guidelines", href: "/exchange/guidelines", icon: "๐Ÿ“œ" }, { label: "Barter", href: "/barter", icon: "โ™ป๏ธ" }, ], }, { title: "Intel & tools", items: [ { label: "Grimoire (vault)", href: "/vault", icon: "๐Ÿ—๏ธ" }, { label: "Forbidden wiki", href: "/hidden-wiki", icon: "๐Ÿ“š" }, { label: "Darknet atlas", href: "/darknet-atlas", icon: "๐Ÿ—บ๏ธ" }, { label: "Shadow syndicate", href: "/syndicate", icon: "๐Ÿ•ธ๏ธ" }, { label: "Routing", href: "/syndicate/routing", icon: "โ†—" }, { label: "Topology", href: "/syndicate/topology", icon: "โฌก" }, { label: "Void crawl (search)", href: "/search", icon: "๐Ÿ”ฆ" }, { label: "Links", href: "/links", icon: "๐Ÿ”—" }, { label: "Presswire", href: "/presswire", icon: "๐Ÿ“ฃ" }, ], }, { title: "Extras", items: [ { label: "Launch", href: "/launch", icon: "๐Ÿ”ฅ" }, { label: "Drops", href: "/drops", icon: "๐Ÿš€" }, { label: "Drop box", href: "/drop-box", icon: "๐Ÿ“ฆ" }, { label: "Raffle", href: "/raffle", icon: "๐ŸŽŸ๏ธ" }, { label: "Awards", href: "/awards", icon: "๐Ÿ†" }, { label: "Testimonials", href: "/testimonials", icon: "โœจ" }, { label: "Reviews", href: "/reviews", icon: "โญ" }, { label: "Support", href: "/support", icon: "๐Ÿ†˜" }, { label: "Game", href: "/game", icon: "๐ŸŽฎ" }, { label: "Mixer", href: "/mixer", icon: "๐ŸŒ€" }, { label: "Webring", href: "/webring", icon: "โˆž" }, { label: "Trust", href: "/trust", icon: "โš–๏ธ" }, { label: "Security analysis", href: "/security-analysis", icon: "๐Ÿ”" }, { label: "Arb academy", href: "/arb-academy", icon: "๐Ÿ“š" }, { label: "Comparison", href: "/comparison", icon: "โš—๏ธ" }, { label: "Conspiracies", href: "/conspiracies", icon: "๐Ÿ•ฏ๏ธ" }, { label: "Trees", href: "/trees", icon: "๐ŸŒฒ" }, { label: "Easter eggs", href: "/easter-eggs", icon: "๐Ÿฅš" }, { label: "Red room", href: "/red-room", icon: "๐Ÿšช" }, ], }, ]; export function flattenSiteNavItems(): SiteNavItem[] { return SITE_NAV_GROUPS.flatMap((g) => g.items); }