'use client' import { useEffect, useState } from 'react' export function HeroSection() { const [isVisible, setIsVisible] = useState(false) useEffect(() => { setIsVisible(true) }, []) return (
{/* Background network lines */}
{'>>>_ You made it'}

myc0punkz

{'Congratulations. You found the underground of the underground.'}

DESCEND
) }