"use client"; import { useEffect, useState } from "react"; import Link from "next/link"; import { SHOP_PRODUCT_COUNT } from "@/lib/shopCatalog"; import { SHOP_SELLER_COUNT } from "@/lib/shopSellers"; const Hero = () => { const [mousePosition, setMousePosition] = useState({ x: 0, y: 0 }); const [particles, setParticles] = useState>([]); useEffect(() => { const handleMouseMove = (e: MouseEvent) => { setMousePosition({ x: e.clientX, y: e.clientY }); }; window.addEventListener("mousemove", handleMouseMove); // Generate floating particles const particleCount = 30; const newParticles = []; for (let i = 0; i < particleCount; i++) { newParticles.push({ x: Math.random() * 100, y: Math.random() * 100, size: Math.random() * 3 + 1, speed: Math.random() * 0.5 + 0.2, }); } setParticles(newParticles); return () => window.removeEventListener("mousemove", handleMouseMove); }, []); return (
{/* Animated background particles */}
{particles.map((p, i) => (
))} {/* Glowing orbs */}
{/* Grid lines */}
{/* Glitch text effect */}

FORBIDDEN DARK ARTS EMPORIUM

FORBIDDEN
EMPORIUM

Curated mystical artifact apothecary with live catalog, alchemist guilds, and soul-bound checkout โ€” plus companion realms for covenants, incantations, and the forbidden wiki.

Featured Categories Full market Forum
{/* CTA Buttons */}
BROWSE CATALOG
โ‚ฟ CHECKOUT & BALANCE SANCTUARY ๐Ÿš€ DROPS
{/* Stats */}
{[ { value: String(SHOP_PRODUCT_COUNT), label: "Arcane Relics", color: "text-neon-cyan" }, { value: String(SHOP_SELLER_COUNT), label: "Alchemist Guilds", color: "text-neon-green" }, { value: "Mana ยท Aether", label: "Soul bindings", color: "text-neon-purple" }, { value: "v3 coven", label: "Shadow routing", color: "text-neon-pink" }, ].map((stat) => (
{stat.value}
{stat.label}
))}
{/* Scroll indicator */}
SCROLL TO UNCOVER
); }; export default Hero;