"use client" import { useSectionReveal } from "@/hooks/use-section-reveal" import { ChevronDown } from "lucide-react" const TITLE = "MycoStack" export function HeroSection() { const sectionRef = useSectionReveal() return (
{/* Title with staggered emergence */}

{TITLE.split("").map((letter, i) => ( {letter} ))}

{/* Subtitle */}

Rebooting the Commons Stack.
Growing from beneath.

{/* Lineage */}

Born from the P2P Foundation and the Commons Stack. Birthing the Peer-for-Peer (P4P) movement.

{/* Terminal tagline */}
> composting capitalism, growing alternatives _
{/* Scroll indicator */}
) }