"use client" import { useEffect, useState } from "react" import Link from "next/link" export default function Home() { const [glitchText, setGlitchText] = useState("ENTER THE NETWORK") useEffect(() => { const glitchChars = "!<>-_\\/[]{}—=+*^?#________" const originalText = "ENTER THE NETWORK" const glitchInterval = setInterval(() => { if (Math.random() > 0.95) { const glitched = originalText .split("") .map((char) => (Math.random() > 0.9 ? glitchChars[Math.floor(Math.random() * glitchChars.length)] : char)) .join("") setGlitchText(glitched) setTimeout(() => setGlitchText(originalText), 100) } }, 100) return () => clearInterval(glitchInterval) }, []) return (
{/* Animated grid background */}
{/* Fractal orbs */}
{/* Scan lines */}
{/* Main content */}
{/* Glitch text effect */}

{glitchText}

Where consciousness meets code

The mycelial network awaits. A living system of institutional neuroplasticity, where communities evolve through distributed intelligence.

Are you ready to explore the intersection of biology, technology, and collective consciousness?

INITIALIZE CONNECTION
{/* Pulsing indicator */}
SYSTEM ACTIVE
) }