const { useEffect, useMemo, useState } = React; const socials = { telegram: "https://t.me/Biqcoineth", x: "https://x.com/biqcoineth", }; const CONTRACT_ADDRESS = "0x000000000000000000000000"; const CONTRACT_PLACEHOLDER = "CONTRACT ADDRESS COMING SOON"; const windows = [ { id: "manifesto", icon: "🧠", title: "manifesto.txt", content: "BIQcoin = Billion IQ. A Billion IQ is far better than a Million one. That is why nobody whispers about millionaires when billionaires are busy stealing the spotlight. Join the Cult.", }, { id: "tokenomics", icon: "📊", title: "tokenomics.xls", content: "Total Supply: 1,000,000,000 BIQ tokens. Ticker: $BIQ. Chain: Ethereum. Utility: billionaire brain posture. Million IQ was the tutorial. Billion IQ is the boss level.", }, { id: "terminal", icon: "💾", title: "biq_terminal.exe", content: "C:\\BIQ> run giga_brain.bat\nloading billion_iq.dll...\nchecking ETH community vibes...\nresult: cult formation probable\nstatus: exceptionally unserious", }, ]; const memes = [ { name: "galaxy_brain.bmp", caption: "IQ so large etherscan asks for pagination.", image: "/assets/biq-meme-galaxy-brain-elonish.png", }, { name: "chad_allocation.bmp", caption: "Distribution desk opens when the cult stops blinking.", image: "/assets/biq-meme-drop-desk-elonish.png", }, { name: "midcurve_deleted.bmp", caption: "A Million IQ? Cute. A Billion IQ? Spotlight behavior.", image: "/assets/biq-meme-1b-vs-1m-elonish.png", }, { name: "spotlight_rocket.bmp", caption: "Billionaires do not walk. They launch poorly drawn rockets.", image: "/assets/biq-meme-rocket-elonish.png", }, { name: "biq_exe.bmp", caption: "Ancient computer. Modern delusion. Billion IQ loaded.", image: "/assets/biq-meme-exe-elonish.png", }, { name: "cult_meeting.bmp", caption: "Tonight's agenda: buy high, think higher.", image: "/assets/biq-meme-cult-elonish.png", }, ]; const phases = [ { label: "Phase 1", title: "Boot", items: ["Website.exe launches", "BIQ propaganda spreads", "Telegram starts sounding like a math class"], }, { label: "Phase 2", title: "Distribute", items: ["A billion BIQ tokens enter the arena", "Ethereum chads inspect the artifact", "Millionaire mindset gets uninstalled"], }, { label: "Phase 3", title: "Ascend", items: ["Charts become abstract art", "Cult lore becomes unavoidable", "Billion IQ becomes a lifestyle choice"], }, ]; function App() { const [time, setTime] = useState(""); const [alertOpen, setAlertOpen] = useState(true); const [startOpen, setStartOpen] = useState(false); const [visitors, setVisitors] = useState(42069); const [copyStatus, setCopyStatus] = useState("Copy CA"); const hasContractAddress = Boolean(CONTRACT_ADDRESS); const contractDisplay = CONTRACT_ADDRESS || CONTRACT_PLACEHOLDER; const marquee = useMemo( () => Array.from({ length: 2 }, () => "$BIQ.EXE ONLINE • BILLION IQ LOADING • ETHEREUM CHADS DETECTED • JOIN THE CULT • " ).join(""), [] ); useEffect(() => { function tick() { const date = new Date(); setTime( date.toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", }) ); } tick(); const clock = window.setInterval(tick, 30000); const counter = window.setInterval(() => { setVisitors((value) => value + Math.floor(Math.random() * 9) + 1); }, 900); return () => { window.clearInterval(clock); window.clearInterval(counter); }; }, []); function jumpTo(id) { document.getElementById(id)?.scrollIntoView({ behavior: "smooth", block: "start" }); setStartOpen(false); } async function copyContractAddress() { if (!hasContractAddress) return; try { await navigator.clipboard.writeText(CONTRACT_ADDRESS); setCopyStatus("Copied"); } catch { const fallback = document.createElement("textarea"); fallback.value = CONTRACT_ADDRESS; document.body.appendChild(fallback); fallback.select(); document.execCommand("copy"); fallback.remove(); setCopyStatus("Copied"); } window.setTimeout(() => setCopyStatus("Copy CA"), 1400); } return (
); } ReactDOM.createRoot(document.getElementById("root")).render();