- Replace fake-site footer with dark-web launch CTA; fix HubChatter inside AppProviders (client crash) - Add /launch, DEPLOY.md, onions:list|status|health, list-onion-urls, install-systemd, onion-status - start.sh CYBERLUX_PREPARE_ONLY; copy pass on satellite pages; Navbar launch link - README: operator cheat sheet, phone Tor note, systemd via install-systemd.sh Made-with: Cursor
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
|
|
export function WebringBadge({ storeHref = "/" }: { storeHref?: string }) {
|
|
return (
|
|
<div className="mt-16 glass rounded-2xl border border-white/10 p-6">
|
|
<div className="flex flex-col gap-4 md:flex-row md:items-center md:justify-between">
|
|
<div>
|
|
<div className="font-orbitron text-lg font-bold text-neon-green">
|
|
VERIFIED WORKING SITE
|
|
</div>
|
|
<div className="text-sm text-foreground/60">
|
|
This microsite has been audited by the Department of Vibes and found to be
|
|
suspiciously operational.
|
|
</div>
|
|
</div>
|
|
<Link
|
|
href={storeHref}
|
|
className="inline-flex items-center justify-center rounded-full bg-gradient-to-r from-neon-cyan to-neon-purple px-6 py-3 font-bold text-background"
|
|
>
|
|
Return to CyberLux →
|
|
</Link>
|
|
</div>
|
|
<div className="mt-4 text-xs text-foreground/40">
|
|
Shadow-routed microsite · deploy your own onion from the hub → <Link href="/launch" className="text-neon-cyan hover:underline">/launch</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|