"use client" import { Plane, Cloud, DollarSign, ChevronDown } from "lucide-react" import { Button } from "@/components/ui/button" import { GlitchText } from "@/components/glitch-text" const floatingItems = [ { Icon: Plane, className: "top-[15%] left-[10%]", delay: "0s", duration: "6s" }, { Icon: Cloud, className: "top-[25%] right-[15%]", delay: "1s", duration: "8s" }, { Icon: DollarSign, className: "top-[60%] left-[20%]", delay: "2s", duration: "7s" }, { Icon: Plane, className: "top-[70%] right-[10%]", delay: "0.5s", duration: "9s" }, { Icon: Cloud, className: "top-[40%] left-[75%]", delay: "3s", duration: "7.5s" }, { Icon: DollarSign, className: "top-[20%] left-[50%]", delay: "1.5s", duration: "6.5s" }, ] export function Hero() { const scrollTo = (id: string) => { document.getElementById(id)?.scrollIntoView({ behavior: "smooth" }) } return (
{/* Floating background elements */} {floatingItems.map((item, i) => (
))} {/* Content */}
Coming Soon
{`We're just a bunch of friends who hate paying $800 for a flight that was $200 yesterday :)`}

So we built a way to stop getting gouged. An ergodically aligned collective mechanism to protect each other from extractive pricing algorithms.

{/* Scroll indicator */}
) }