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 */}

browse

CATEGORY THEMES

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

{cat.name}

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

THE VAULT

A secure, encrypted space for returning customers. Store digital receipts, unlock loyalty rewards, and access exclusive content.

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

ENCRYPTION SUITE

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

PRIVACY FEATURES

  • 🔐
    Zero‑Knowledge Proofs
    We never see your password or private keys.
  • 🌐
    IPFS Decentralized Storage
    Product images and receipts stored on distributed networks.
  • On‑Chain Verification
    Every transaction is verifiable on the blockchain.
  • 🕶️
    Phantom Mode
    UI elements appear/disappear based on scroll depth for added mystery.

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 */} ); }