Split Carousel with Thumbnails

Two-column carousel with animated content transitions, thumbnail strip navigation, and vertical progress indicator. Perfect for product showcases and feature highlights.

PRO

Two-column, near-fullscreen carousel (lg:h-screen): copy on the left, a rounded media card on the right with five selectable transition styles, an overlapping thumbnail strip at the bottom of the card, and a vertical progress rail on the far right (desktop only).

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/hero20?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/hero20.tsx, the Badge and Button shadcn/ui primitives it uses, and framer-motion as an npm dependency.

Quick start

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

tsx
import { Hero20, hero20Demo } from "@/components/beste/block/hero20";

export default function Page() {
  return <Hero20 {...hero20Demo} />;
}

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

tsx
import { Hero20 } from "@/components/beste/block/hero20";

export default function Page() {
  return (
    <Hero20
      transition="reveal"
      slides={[
        {
          id: "slide-1",
          heading: "Design Without Limits",
          description: "Build stunning experiences without constraints.",
          image: {
            src: "https://images.unsplash.com/photo-1764009971892-6bf11e43f210?w=1600&auto=format&fit=crop",
            alt: "Abstract colorful design",
          },
          buttons: [{ id: "btn-1", label: "Start Creating", href: "/start" }],
        },
        {
          id: "slide-2",
          heading: "Collaborate in Real-time",
          image: {
            src: "https://images.unsplash.com/photo-1666585958614-ade385208fac?w=1600&auto=format&fit=crop",
            alt: "Creative collaboration workspace",
          },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
slidesHeroSlide[]Slide data; required
autoPlaybooleantrueAuto-advances on the interval timer
intervalnumber5000Milliseconds between auto-advances; drives both progress indicators
transitionTransitionType"parallax"Enter/exit animation for the media card
showThumbnailsbooleantrueThumbnail strip overlapping the bottom of the media card
showArrowsbooleantruePrev/next chevrons inside the media card
showProgressbooleantruePer-thumbnail progress underline plus the vertical progress rail
classNamestringExtra classes for the outer <section>
ts
type HeroSlide = {
  id: string;
  badge?: { label: string; variant?: "default" | "secondary" | "outline" };
  heading?: string;
  description?: string;
  image?: { src: string; alt: string };
  buttons?: ButtonItem[];
};

type ButtonItem = {
  id: string;
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
  icon?: React.ReactNode;
};

type TransitionType = "fade" | "parallax" | "reveal" | "morphism" | "curtain";

Behavior notes

More Hero blocks

View all Hero
PRO

hero19

Cinematic Fullscreen Carousel

Full-screen animated carousel with multiple transition effects, next slide preview, and progress bar. Perfect for immersive storytelling and portfolio showcases.

PRO

hero51

Split Hero with 3D Tilt Effect

Two-column hero with interactive image card that tilts in 3D on mouse movement with shine effect. Perfect for showcasing premium or interactive products.

PRO

hero102

Split Hero with Timeline Steps

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

PRO

hero21

Fullscreen Vertical Carousel

Full-screen carousel with vertical slide transitions, decorative grid lines, and customizable accent colors. Perfect for creative agencies and modern brand showcases.

PRO

hero61

Split Hero with Floating Feature Cards

Two-column hero with announcement banner, social proof metrics, and three floating feature cards with hover animations. Perfect for SaaS product launches.

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.