import Link from "next/link"; import Navbar from "@/components/Navbar"; import { SITE_NAV_GROUPS, flattenSiteNavItems } from "@/lib/siteNav"; const quickStarts = [ { label: "Start shopping", href: "/market", hint: "Catalog, vendors, product detail pages, and checkout." }, { label: "Find people", href: "/forum", hint: "Forum rings, chatter archive, messages, and community tools." }, { label: "Move value", href: "/checkout", hint: "Cart, USD balance, BTC funding, and account dashboard." }, { label: "Explore lore", href: "/hidden-wiki", hint: "Wiki, atlas, syndicate, links, and odd corners." }, ]; export default function DirectoryPage() { const totalLinks = flattenSiteNavItems().length; return (

everything site

CyberLux Master Directory

One onion, every room. Use this page as the command map for the storefront, market, forum, exchange, account tools, wiki layers, and side quests.

single ingress

Tor now publishes one hidden service from cyberlux. All sections live as normal paths under that one hostname.

1
onion address
{totalLinks}
mapped doors
{quickStarts.map((item) => (

{item.label}

{item.hint}

))}

site map

All Rooms

Search the site
{SITE_NAV_GROUPS.map((group) => (

{group.title}

{group.items.map((item) => ( {item.icon} {item.label} {item.href} ))}
))}
); }