"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import LexiconStrip from "@/components/site/LexiconStrip"; import { SYNDICATE_ATMOSPHERE_TAGS } from "@/lib/cyberluxZoneLexicon"; const NAV: { href: string; label: string }[] = [ { href: "/syndicate", label: "Node index" }, { href: "/syndicate/topology", label: "Topology" }, { href: "/syndicate/routing", label: "Routing lore" }, ]; export default function SyndicateSiteChrome({ children }: { children: React.ReactNode }) { const pathname = usePathname() ?? ""; return (

syndicate · multi-layer

Syndicate shells

Themed /w/* relays on the same Next deployment — index, topology, and routing docs are separate pages so dedicated onions can deep-link without a single flat list.

{children}
); }