Video Introduction Screen

Welcome screen featuring a video thumbnail with play overlay and duration badge. Perfect for product tours that use video content to demonstrate features.

FREE

Onboarding4: Video Introduction Screen

Video-tour welcome screen: a badge, heading, and description sit above a video thumbnail with a play-button overlay and duration pill, followed by primary and secondary CTAs.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/onboarding4"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/onboarding4"

This installs the block to components/beste/block/onboarding4.tsx and the badge and button shadcn/ui primitives it depends on.

Quick start

The installed file exports onboarding4Demo alongside the block: the exact props behind the preview above. Spread it to get a working intro screen in one line.

tsx
import { Onboarding4, onboarding4Demo } from "@/components/beste/block/onboarding4";

export default function OnboardingPage() {
  return <Onboarding4 {...onboarding4Demo} />;
}

Then replace the demo with your own props. Written out, the same setup looks like this:

tsx
import { Onboarding4 } from "@/components/beste/block/onboarding4";

export default function OnboardingPage() {
  return (
    <Onboarding4
      badge="Quick Tour"
      heading="See how it works"
      description="A short walkthrough of the core workflow."
      video={{
        thumbnailSrc: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1200&h=675&fit=crop",
        thumbnailAlt: "Product walkthrough thumbnail",
        duration: "1:48",
      }}
      primaryButton={{ label: "Watch Video", href: "/tour" }}
      secondaryButton={{ label: "Skip", href: "/dashboard" }}
    />
  );
}

Props

PropTypeDefaultDescription
badgestringSmall outline badge above the heading
headingstringMain headline
descriptionstringSupporting copy below the heading
videoVideoInfoThumbnail image, alt text, and optional duration pill
primaryButton{ label: string; href: string }Primary CTA, always shown with a leading Play icon
secondaryButton{ label: string; href: string }Secondary CTA, always shown with a leading SkipForward icon
classNamestringExtra classes for the outer <section>
ts
type VideoInfo = {
  thumbnailSrc: string;
  thumbnailAlt: string;
  duration?: string;
};

Behavior notes

More Onboarding blocks

View all Onboarding
PRO

onboarding30

Feature Tour Carousel

Onboarding screen with navigable feature highlight cards, dot indicators, and back/next buttons. Perfect for introducing key platform features during the first-time user experience.

FREE

onboarding3

Minimal Welcome with Icon

Clean, centered welcome screen with a branded icon, heading, and single call-to-action. Perfect for simple app introductions that prioritize clarity over complexity.

FREE

onboarding1

Welcome Hero with Step Indicator

Centered welcome screen featuring a hero image, step counter, and dual CTAs. Perfect for app onboarding flows that guide users through a multi-step setup process.

PRO

onboarding21

Onboarding Completion Screen

Completion screen shown after finishing onboarding with a summary of what was configured and quick-start action links. Perfect for ending the setup flow with clear next steps.

PRO

onboarding20

Template Starter Picker

Onboarding screen with a grid of starter templates to choose from, each with a preview thumbnail, title, and description. Perfect for project creation flows in design tools and project management apps.

PRO

onboarding18

Notification Preferences

Onboarding screen with toggle switches for configuring notification channels and frequency. Perfect for apps that need granular notification consent during setup.