/** * Curated internal targets for the link garden and cross-page β€œdark web” navigation. * Paths are always root-relative under the single CyberLux onion host. */ export type SitemapEntry = { name: string; description: string; href: string; icon: string }; export const LINK_GARDEN_INTERNAL: SitemapEntry[] = [ { name: "Darknet Atlas", description: "Analyst taxonomy of underground ecosystems β€” every row links to a real CyberLux surface.", href: "/darknet-atlas", icon: "πŸ—ΊοΈ" }, { name: "Void Crawler", description: "Search across all signed CyberLux routes with real-time keyword index.", href: "/search", icon: "πŸ”¦" }, { name: "Void Aggregate (Forum)", description: "Ringed board for threaded discussion β€” posts persist per device.", href: "/forum", icon: "β—†" }, { name: "Market Catalog", description: "Full SKU grid with category filters, vendor links, and cart.", href: "/market", icon: "πŸ“ˆ" }, { name: "Hidden Wiki", description: "Directory layer β€” all links point to real CyberLux routes.", href: "/hidden-wiki", icon: "πŸ“š" }, { name: "Classifieds Exchange", description: "WTS / WTB listings backed by localStorage, open to all signed-in handles.", href: "/exchange", icon: "πŸ“°" }, { name: "Ash Pit (Barter)", description: "Have / want swap board β€” four lanes: goods, services, data, open.", href: "/barter", icon: "♻️" }, { name: "Onion Entry Notes", description: "Portable identity guide and notes for the single CyberLux onion.", href: "/account/hidden-services", icon: "πŸ§…" }, { name: "Security Analysis", description: "Detailed architecture breakdown of the CyberLux stack β€” educational reading.", href: "/security-analysis", icon: "πŸ”¬" }, { name: "Add Funds", description: "Bitcoin deposit flow β€” verified on-chain, credited USD to your handle.", href: "/account/add-funds", icon: "β‚Ώ" }, { name: "Launch (Tor + nginx)", description: "Build, run, and verify the hidden-service stack on this host.", href: "/launch", icon: "πŸš€" }, ];