Saasflare UI
Components

Hero Video Dialog

Poster image with a play button that opens an embedded video in a modal. Landing-page hero staple.

Installation

npx shadcn@latest add https://ui.saasflare.io/r/hero-video-dialog.json
pnpm add @saasflare/ui

Usage

Loading…
"use client"import { HeroVideoDialog } from "@saasflare/ui"/** A poster thumbnail with a play button that opens an embedded video in a dialog. */export function Demo() {    return (        <div className="w-full max-w-2xl">            <HeroVideoDialog                videoSrc="https://www.youtube.com/embed/dQw4w9WgXcQ"                thumbnailSrc="https://images.unsplash.com/photo-1551434678-e076c223a692?w=800"                thumbnailAlt="Product demo walkthrough"            />        </div>    )}

Aspect Ratio

Loading…
"use client"import { HeroVideoDialog } from "@saasflare/ui"/** A hero video dialog with a custom 4/3 aspect ratio for the poster and player. */export function Demo() {    return (        <div className="w-full max-w-md">            <HeroVideoDialog                videoSrc="https://www.youtube.com/embed/dQw4w9WgXcQ"                thumbnailSrc="https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800"                thumbnailAlt="Analytics dashboard tour"                aspectRatio="4/3"            />        </div>    )}

API Reference

Prop

Type

On this page