Search for a command to run...
Clean, modern building blocks. Copy and paste into your apps. Works with all React frameworks. Open Source. Free forever.
import CtaSection from "@/components/cta" export default function CtaPage() { return ( <div className="w-full max-w-full"> <CtaSection /> </div> ) }
import CtaPage from "@/components/cta-02" export default function Cta02Page() { return ( <div className="flex min-h-screen w-full flex-col items-center justify-center px-4"> <CtaPage /> </div> ) }
import { CallToAction } from "@/components/cta-03" export default function Page() { return ( <div className="flex min-h-screen w-full flex-col items-center justify-center px-4"> <CallToAction /> </div> ) }