Components
A Tron-styled call-to-action banner with animated glow, scanline overlay, corner decorations, and primary/secondary action buttons.
Loading preview...
import { CTABanner } from "@/components/ui/cta-banner"
export default function Default() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center bg-background p-8">
<CTABanner
className="w-full max-w-lg"
variant="highlight"
title="Enter The Grid"
description="Join thousands of programs already running on the network. Deploy your first sequence in seconds."
primaryAction={{ label: "Initialize" }}
secondaryAction={{ label: "Learn More" }}
/>
</div>
)
}