export default function MarketSevenPulse() { const aiNodes = [ { id: 1, x: "6%", y: "12%", w: "260px", h: "150px", label: "GPT Core", glow: "cyan", }, { id: 2, x: "30%", y: "8%", w: "170px", h: "170px", label: "Claude", glow: "purple", }, { id: 3, x: "48%", y: "15%", w: "240px", h: "120px", label: "Runway", glow: "blue", }, { id: 4, x: "72%", y: "10%", w: "160px", h: "220px", label: "Veo", glow: "cyan", }, { id: 5, x: "14%", y: "38%", w: "180px", h: "180px", label: "Cursor", glow: "purple", }, { id: 6, x: "38%", y: "34%", w: "320px", h: "190px", label: "Gemini", glow: "cyan", }, { id: 7, x: "70%", y: "42%", w: "220px", h: "130px", label: "Kling", glow: "blue", }, { id: 8, x: "10%", y: "72%", w: "130px", h: "130px", label: "Pika", glow: "purple", }, { id: 9, x: "32%", y: "74%", w: "260px", h: "120px", label: "Perplexity", glow: "cyan", }, { id: 10, x: "62%", y: "70%", w: "150px", h: "200px", label: "Ideogram", glow: "blue", }, ]; const microNodes = Array.from({ length: 65 }, (_, i) => ({ id: i, left: `${Math.random() * 100}%`, top: `${Math.random() * 100}%`, size: `${28 + Math.random() * 38}px`, opacity: 0.15 + Math.random() * 0.35, duration: `${4 + Math.random() * 6}s`, })); const topAI = [ "GPT", "Claude", "Gemini", "Runway", "Veo", "Cursor", "Kling", "Suno", "Pika", "Perplexity", ]; return (
{/* MAIN BACKGROUND */}
{/* FLOATING PARTICLES */} {microNodes.map((node) => (
))} {/* HEADER */}

MarketSeven{" "} Pulse

AI ECOSYSTEM MAP

10 MAY 2026
12 NEW AI TODAY
{/* MAIN CONTENT */}
{/* AI MAP */}
{/* HUGE TITLE */}

PULSE

AI Universe

Explore the most advanced artificial intelligence ecosystem through a cinematic real-time interface.

{/* AI NODES */} {aiNodes.map((node) => (
{/* OUTER GLOW */}
{/* MAIN CARD */}
{/* INTERNAL LIGHT */}
{/* GRID */}
{/* AMBIENT LIGHT */}
{/* STATUS DOT */}
LIVE
{/* LABEL */}
{node.label}
ACTIVE NODE
))}
{/* RIGHT PANEL */}
{/* BOTTOM AI CHAT */}
{/* HEADER */}
Pulse AI Guide
{/* EXAMPLE */}
“I want to create automated 10 minute AI videos for free. Which tools should I use?”
{/* INPUT */}
); }