"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import LexiconStrip from "@/components/site/LexiconStrip"; import { EXCHANGE_ATMOSPHERE_TAGS } from "@/lib/cyberluxZoneLexicon"; const SECTIONS: { href: string; label: string; blurb: string }[] = [ { href: "/exchange", label: "The board", blurb: "WTS / WTB stream + submit" }, { href: "/exchange/guidelines", label: "Guidelines", blurb: "Posting law & risk rails" }, { href: "/exchange/ledger", label: "Ledger view", blurb: "Volume, mix, freshness" }, ]; export default function ExchangeSiteChrome({ children }: { children: React.ReactNode }) { const pathname = usePathname() ?? ""; return (

Weekly stranger gazette · multi-section

The Exchange

Classifieds spine — same wallet session as the hub. Board, policy, and ledger are first-class routes, not bolt-on tabs.

Hub | Market | Forum | Barter | Crawler | Wiki | Atlas | Syndicate | Dashboard | Mirrors
{SECTIONS.map((s) => ( {s.label} ))}
{children}
); }