Cinematic fullscreen hero with inset background video and floating glassmorphism testimonial cards
Fullscreen, centered hero over an inset background image or video, with a row of floating glassmorphism testimonial cards, each carrying a star rating, quote, and avatar, anchored to the bottom of the viewport.
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.
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
npx shadcn add "https://ui.beste.co/r/hero85?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero85?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero85.tsx along with the badge, button, and avatar shadcn/ui primitives it depends on.
The installed file exports hero85Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero85, hero85Demo } from "@/components/beste/block/hero85";
export default function Page() {
return <Hero85 {...hero85Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Hero85 } from "@/components/beste/block/hero85";
export default function Page() {
return (
<Hero85
badge={{ label: "Trusted by Teams", variant: "secondary" }}
heading="The platform teams rely on to build faster"
description="Join thousands of companies designing, developing, and deploying with us."
buttons={[
{ label: "Start Free Trial", href: "/signup" },
{ label: "View Pricing", href: "/pricing", variant: "outline" },
]}
backgroundMedia={{ type: "image", src: "https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?w=1600&h=900&fit=crop" }}
testimonials={[
{
name: "Sarah Chen",
title: "CTO at Acme",
quote: "Reduced our development time by 60%.",
avatar: { src: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=64&h=64&fit=crop", alt: "Sarah Chen" },
rating: 5,
},
{
name: "Marcus Johnson",
title: "Lead Designer",
quote: "The best tool I've used in 10 years of design.",
rating: 5,
},
]}
invertColor
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Small label above the heading |
heading | string | – | Main headline |
description | string | – | Supporting paragraph under the heading |
buttons | { label: string; href: string; variant?: "default" | "outline" }[] | [] | CTA buttons centered below the description |
backgroundMedia | { type: "image" | "video"; src: string; alt?: string } | – | Full-viewport inset image or video behind the content |
testimonials | Testimonial[] | [] | Floating quote cards anchored to the bottom of the viewport |
invertColor | boolean | true | Switches text, overlay, and card colors between dark-background and light-background styling |
className | string | – | Extra classes for the outer <section> |
type Testimonial = {
name: string;
title: string;
quote: string;
avatar?: { src: string; alt: string };
rating?: number;
};Avatar component with an initials AvatarFallback (first letter of each word in name), so a card still renders a sensible avatar circle when avatar is omitted.rating renders as rating filled fill-yellow-400 stars with no partial-star or empty-star rendering: a card with no rating simply skips the star row entirely.md:grid-cols-3 grid of backdrop-blur-md glass panels inside the same min-h-screen section as the hero copy (below it, not overlapping), unlike hero80's overlapping-media layout.invertColor (default true) is threaded through every text, border, and background color across the badge, heading, description, and every testimonial card, so toggling it re-themes the whole hero for a light background image.hero81
Cinematic fullscreen hero with inset background media and glassmorphism quick-access cards
hero87
Fullscreen hero with centered glassmorphism card floating over inset background video
hero86
Cinematic fullscreen hero with inset background video and trusted-by logo strip
hero100
Fullscreen hero with centered content and browser window frame mockup over inset background video
hero97
Fullscreen bottom-aligned hero with vertical stack cards and inset background video with gradient overlay
hero99
Cinematic fullscreen hero with scrolling marquee keyword band over inset background video