'use client'; import { ArrowRight } from 'lucide-react'; export function FinalCtaSection() { const scrollToTop = () => { window.scrollTo({ top: 0, behavior: 'smooth' }); setTimeout(() => { const input = document.querySelector('input[type="email"]') as HTMLInputElement; input?.focus(); }, 500); }; return (

Ready to build?

Join developers waiting for early access. We'll notify you when your spot is ready.

No credit card required • Free to start • Cancel anytime

); }