import Link from "next/link"; import ThemedLayout from "@/components/layouts/ThemedLayout"; export default function WebringPage() { const sites = [ { name: "The Candy Shop", path: "/market", desc: "Premium sweets and treats." }, { name: "Darknet Ping Pong", path: "/game", desc: "The shared entity." }, { name: "Shadow Lotto", path: "/drops", desc: "Win big or lose it all." }, { name: "The Truth Seeker", path: "/conspiracies", desc: "Uncover the hidden." }, { name: "The Sanctuary", path: "/sanctuary", desc: "Peace in the void." }, { name: "Master Control", path: "/vault", desc: "The eye that sees all." }, { name: "Arb Academy", path: "/arb-academy", desc: "Learn the trade." }, { name: "Syndicate Shells", path: "/syndicate", desc: "Relay skins and topology notes." }, ]; return (

Network Directory

{sites.map((site, i) => (
[{i.toString().padStart(2, '0')}] {site.name}

{site.desc}

CONNECTING TO NODE_{i}... SUCCESS
))}
⚙️

Expanding the Network...

Dozens of new nodes are being provisioned by the Shadow Protocol.

); }