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

Fullscreen (h-screen), dark carousel over a fixed bg-neutral-950 surface, with five 3D-capable Framer Motion transitions (including a rotating cube), faint decorative grid lines, and a single accentColor prop that tints the active dot, progress bar, and divider with a raw hex color rather than a semantic Tailwind token.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero21, hero21Demo } from "@/components/beste/block/hero21";

export default function Page() {
  return <Hero21 {...hero21Demo} />;
}

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

tsx
import { Hero21 } from "@/components/beste/block/hero21";

export default function Page() {
  return (
    <Hero21
      transition="cube"
      accentColor="#22c55e"
      slides={[
        {
          id: "slide-1",
          heading: "Discover the Future",
          description: "Where imagination meets reality.",
          image: {
            src: "https://images.unsplash.com/photo-1765706729547-57ad9c7f2814?w=1600&auto=format&fit=crop",
            alt: "Digital globe visualization",
          },
          buttons: [{ id: "btn-1", label: "Explore Now", href: "/explore" }],
        },
        {
          id: "slide-2",
          heading: "Build Tomorrow",
          image: {
            src: "https://images.unsplash.com/photo-1765706729287-953837a94f4d?w=1600&auto=format&fit=crop",
            alt: "Technology circuit board",
          },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
slidesHeroSlide[]Slide data; required
autoPlaybooleantrueAuto-advances on the interval timer
intervalnumber5000Milliseconds between auto-advances; drives the bottom progress bar
transitionTransitionType"slide"Enter/exit animation for the background image
showCounterbooleantrueLarge faded slide-number counter, left side, desktop only
showNavDotsbooleantrueVertical dot navigation, right side
showArrowsbooleantrueUp/down paginate buttons, bottom center
accentColorstring"#7590ca"Raw hex/CSS color applied via inline style, not a Tailwind class
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" | "slide" | "scale" | "flip" | "cube";

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

hero20

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

hero109

Bounded Carousel Hero

Contained 16:9 hero carousel with badge, title, description, and CTA over an image background. Auto-rotates with centered, clickable dots at the bottom — same carousel engine as hero19 but not full-height.

PRO

hero110

Bounded Carousel Hero — Aligned

Contained 16:9 hero carousel with badge, title, description, and CTA. Vertically centered content that anchors to the left, center, or right via the contentAlign prop. Auto-rotates with centered, clickable dots.

FREE

hero57

Full-height Hero with Scroll Indicator

Vertically centered hero with animated scroll-down indicator featuring bouncing dot and arrow. Perfect for single-page sites and immersive landing pages.

PRO

hero99

Fullscreen Hero with Marquee Ticker

Cinematic fullscreen hero with scrolling marquee keyword band over inset background video