import Navbar from "@/components/Navbar"; import Hero from "@/components/Hero"; import ProductCard from "@/components/ProductCard"; import ParticleBackground from "@/components/ParticleBackground"; import EncryptionDemo from "@/components/EncryptionDemo"; import ForumBoard from "@/components/ForumBoard"; import AccountCreation from "@/components/AccountCreation"; import ChatWidget from "@/components/ChatWidget"; import Link from "next/link"; import { SHOP_PRODUCT_COUNT, featuredShopProducts, resolveProductImage, shopCategoryCounts, } from "@/lib/shopCatalog"; import { SHOP_SELLER_COUNT, getSellerById } from "@/lib/shopSellers"; export default function Home() { const categories = shopCategoryCounts(); return ( <> {/* Featured Products */} {/* Category Themes */}

summon

SCHOOLS OF MAGIC

{categories.map((cat) => (
{cat.icon}

{cat.name}

{cat.count} items
))}
{/* Vault Feature */}

THE GRIMOIRE

A secure, enchanted space for initiated warlocks. Store spectral receipts, unlock dark rewards, and access forbidden spells.

OPEN YOUR GRIMOIRE
VAULT STATUS: ACTIVE
Encryption level: Quantum‑256
{/* Encryption Demo */}

ENCRYPTION SUITE

Experience the power of client‑side encryption. Your data stays yours.

HOW IT ACTUALLY WORKS

  • 🔑
    Client-side account store
    Passwords are hashed in-browser. No plaintext ever sent to a server. Accounts live in your localStorage.
  • Bitcoin on-chain verify
    Deposits verified against mempool.space. USD credit applied at CoinGecko spot rate after 1 confirmation.
  • 🧅
    Tor-deployable architecture
    Each .onion is a separate Nginx virtual host looped to the same Next.js process. Documented in DEPLOY.md.
  • 📦
    Portable identity bundle
    Export your account from /dashboard to carry your handle and vault across .onion deployments.

Multi‑onion network

CyberLux runs as a federated ring: this host is the primary cart; companion onions expose forums, classifieds, and wiki entry points. Wallet and checkout stay reachable from every mirror — always confirm the hostname against the latest signed canary before you fund a session.

Forum platform → Hub chatter archive → Buy / sell exchange → Ash Pit barter floor → Void crawler (internal search) → Hidden wiki → Candy market →

New relay keys publish weekly. Cross-check sha256{" "} fingerprints on the vendor PGP bundle — impostor front domains are common this season.

{/* Forum */}
{/* Account Creation */}
{/* Encrypted Chat */}
{/* Footer */} ); }