"use client";
import Link from "next/link";
type WikiItem = {
title: string;
note: string;
href: string;
external: boolean;
};
const ENTRIES: { cat: string; items: WikiItem[] }[] = [
{
cat: "Reference",
items: [
{
title: "Tor Project (documentation)",
note: "Official browser and onion-service documentation (clearnet).",
href: "https://www.torproject.org/",
external: true,
},
{
title: "CyberLux primary hub",
note: "Main storefront — verify hostname against signed mirror list.",
href: "/",
external: false,
},
{
title: "Darknet Atlas (taxonomy)",
note: "Intel-style map of underground verticals — swap in vetted onions after PGP cross-check.",
href: "/darknet-atlas",
external: false,
},
{
title: "Account & dashboard",
note: "Client-side vault unlock; dashboard aggregates forum, exchange, and barter handles.",
href: "/dashboard",
external: false,
},
{
title: "Add funds (Bitcoin)",
note: "Verified on-chain deposits credit USD to your signed-in handle.",
href: "/account/add-funds",
external: false,
},
{
title: "Account on every hidden mirror",
note: "Each .onion hostname has its own storage — register on each host or import a portable bundle.",
href: "/account/hidden-services",
external: false,
},
{
title: "Void crawler (internal search)",
note: "Ring-local crawler — indexes signed CyberLux routes only; no outbound onions.",
href: "/search",
external: false,
},
],
},
{
cat: "Directories & indexes",
items: [
{
title: "Void crawler",
note: "Search this deployment’s signed routes.",
href: "/search",
external: false,
},
{
title: "Link garden",
note: "Curated internal link board.",
href: "/links",
external: false,
},
{
title: "Darknet Atlas",
note: "Taxonomy with links back into CyberLux surfaces.",
href: "/darknet-atlas",
external: false,
},
{
title: "Onion mirror map",
note: "Per-host identity + portable account bundle.",
href: "/account/hidden-services",
external: false,
},
],
},
{
cat: "Markets & trading",
items: [
{
title: "Market catalog",
note: "Primary storefront SKUs.",
href: "/market",
external: false,
},
{
title: "Classifieds (exchange)",
note: "WTS / WTB listings on this host.",
href: "/exchange",
external: false,
},
{
title: "Vendor hall",
note: "Seller index and stall applications.",
href: "/vendors",
external: false,
},
],
},
{
cat: "Comms & privacy",
items: [
{
title: "Messages (stub)",
note: "Local UI shell — no remote mailbox yet.",
href: "/messages",
external: false,
},
{
title: "Trust center",
note: "Mirror hygiene and safety copy.",
href: "/trust",
external: false,
},
{
title: "Support",
note: "Contact and routing notes.",
href: "/support",
external: false,
},
],
},
{
cat: "Hosting & infrastructure",
items: [
{
title: "Launch / deploy notes",
note: "Tor + nginx + verify script — operator entry for the CyberLux onion.",
href: "/launch",
external: false,
},
{
title: "Security analysis",
note: "In-app security framing.",
href: "/security-analysis",
external: false,
},
],
},
{
cat: "Forums & social",
items: [
{
title: "Void Aggregate (forums)",
note: "Ringed boards on this build.",
href: "/forum",
external: false,
},
{
title: "Chatter archive",
note: "Hub commentary index.",
href: "/chatter",
external: false,
},
],
},
{
cat: "This deployment (internal)",
items: [
{ title: "Relay grid", note: "Themed entry nodes — same wallet session as hub.", href: "/syndicate", external: false },
{ title: "Sign up (local)", note: "Create a handle on this hostname for forum, listings, and dashboard.", href: "/sign-up", external: false },
{ title: "Void Aggregate (forums)", note: "Ringed boards — local session data.", href: "/forum", external: false },
{ title: "Hub chatter archive", note: "Paged index of threads about the main storefront.", href: "/chatter", external: false },
{ title: "Classifieds", note: "WTS / WTB — same deployment.", href: "/exchange", external: false },
{ title: "Ash Pit (barter)", note: "Have / want swap board — dark trading floor.", href: "/barter", external: false },
{ title: "Link garden", note: "Alternate directory layout.", href: "/links", external: false },
{ title: "Checkout", note: "Bitcoin-funded USD balance.", href: "/checkout", external: false },
{ title: "Add funds", note: "Deposit flow + txid verify.", href: "/account/add-funds", external: false },
],
},
];
export default function HiddenWikiPage() {
return (
{ENTRIES.map((section) => (
{section.cat}
{section.items.map((item) => (
{item.external ? (
{item.title}
) : (
{item.title}
)}
{item.note}
{item.external ? (
{item.href}
) : null}
))}
))}
);
}