Cinematic Video Hero CTA
An ultra-wide, tall hero with a full-bleed looping background video and a strong dark gradient overlay. An uppercase eyebrow ("Now launching"), a large bold headline, description, and buttons sit centered over the video for a movie-poster, trailer-style treatment.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/cinematic-video-hero-cta.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/cta/cta55.tsx instead.
Usage
The file also exports cta55Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { Cta55, cta55Demo } from "@/components/blocks/cta/cta55"; export default function Page() { return <Cta55 {...cta55Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Now launching" | Uppercase eyebrow label above the headline. |
| heading | string | "The next chapter starts here" | Large, bold main headline. |
| description | string | none | Supporting copy under the heading. |
| primaryLabel | string | "Watch the trailer" | Primary button label. |
| primaryHref | string | "#" | Primary button destination. |
| secondaryLabel | string | "Get early access" | Secondary button label, omit to hide the button. |
| secondaryHref | string | "#" | Secondary button destination. |
| videoSrc | string | none | URL of the looping background video (MP4). |
| posterSrc | string | none | Poster image shown before the video has loaded. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- The video autoplays muted and looped purely through native HTML attributes (`autoPlay loop muted playsInline`) — there is no JavaScript play/pause control in this demo.
- A real integration should add a user-facing mute/pause control for accessibility (respecting prefers-reduced-motion and giving users a way to stop the motion); that is intentionally not implemented here.
- Bigger and bolder than the base Video Hero CTA (`cta49`): a taller `min-h-[640px]` wrapper, wider tracking on the eyebrow, and a larger headline for a more trailer-like presentation.
More CTA Blocks
View all →centered-newsletter-cta
Centered Newsletter CTA
Minimal centered call-to-action with heading, description, and action buttons.
split-layout-newsletter-cta
Split Layout Newsletter CTA
Two-column call-to-action with a decorative image on one side and a feature list plus subscribe form on the other.
newsletter-social-proof-cta
Newsletter CTA with Social Proof
Newsletter call-to-action with an avatar stack, subscriber count, and a testimonial quote.
banner-cta
Banner CTA
Horizontal banner call-to-action with heading and action buttons side by side.
stats-cta
Stats CTA
Call-to-action section with impressive statistics and trust indicators above action buttons.
multi-card-cta
Multi-Card CTA
Three action cards side by side, each offering a different path to conversion.