Split Hero with Terminal Card

Fullscreen split hero with content left and realistic terminal/CLI card right over inset background video

PRO

Hero101: Split Hero with Terminal Card

Fullscreen split hero: heading, description, and CTAs on the left, a realistic dark-themed terminal window on the right whose command/output lines type themselves in on load, all layered over an inset background video panel.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/hero101?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/hero101?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/hero101.tsx and its dependencies: the badge and button shadcn/ui primitives.

Quick start

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

tsx
import { Hero101, hero101Demo } from "@/components/beste/block/hero101";

export default function Page() {
  return <Hero101 {...hero101Demo} />;
}

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

tsx
import { Hero101 } from "@/components/beste/block/hero101";

export default function Page() {
  return (
    <Hero101
      badge={{ label: "Developer First", variant: "secondary" }}
      heading="Deploy in seconds, not hours"
      description="One command to go from local to global."
      buttons={[
        { label: "Get Started", href: "/signup", variant: "default" },
        { label: "Read Docs", href: "/docs", variant: "outline" },
      ]}
      backgroundMedia={{ type: "video", src: "/videos/hero.mp4" }}
      terminalTitle="Terminal — zsh"
      terminalLines={[
        { type: "command", text: "npx create-app my-project" },
        { type: "output", text: "Installing dependencies..." },
        { type: "success", text: "✓ Project created successfully" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgePill shown above the heading
headingstringMain headline
descriptionstringSupporting copy under the heading
buttonsButtonItem[][]CTA buttons under the description
backgroundMediaBackgroundMediaVideo or image behind the whole section
terminalLinesTerminalLine[][]Lines rendered inside the terminal card, in order
terminalTitlestring"Terminal"Text centered in the terminal's title bar
invertColorbooleantrueLight-on-dark treatment (white text, black overlay) vs. dark-on-light
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string; variant?: "default" | "secondary" | "outline" };
type ButtonItem = { label: string; href: string; variant?: "default" | "outline" };
type BackgroundMedia = { type: "image" | "video"; src: string; alt?: string };
type TerminalLine = { type: "command" | "output" | "success" | "comment"; text: string };

Behavior notes

More Hero blocks

View all Hero
PRO

hero91

Split Hero with Feature List Panel

50/50 split hero with muted content panel and feature list left, video/image right

PRO

hero84

Split Hero with Edge-to-Edge Media

50/50 split hero with content left and edge-to-edge video/image right with checklist items

PRO

hero102

Split Hero with Timeline Steps

50/50 split hero with content left and vertical numbered timeline overlay on video right

PRO

hero92

Split Hero with Bento Feature Grid

50/50 split hero with content left and bento feature grid overlay on video right

PRO

hero35

Split Hero with Video Player

Two-column hero with playable video (or image), play button overlay, and key stats row. Perfect for product demos and feature announcements.

PRO

hero89

Reverse Split Hero with Testimonial

50/50 split hero with video/image left and content with testimonial quote right