import { WaitlistForm } from "@wacht/react-router";
export default function LandingPageHero() {
return (
<section className="bg-zinc-950 text-white min-h-[70vh] flex flex-col items-center justify-center text-center p-6">
<h1 className="text-5xl font-extrabold tracking-tight mb-6 mt-12">
The future of infrastructure.
</h1>
<p className="text-xl text-zinc-400 mb-12 max-w-2xl mx-auto font-medium">
We are currently operating in a closed, invite-only beta. Ensure you request access below to secure your spot in line.
</p>
<div className="w-full max-w-sm mx-auto shadow-2xl rounded-xl border border-zinc-800 bg-zinc-900 p-2">
<WaitlistForm />
</div>
</section>
);
}