Fullscreen Hero with Floating Testimonials

Cinematic fullscreen hero with inset background video and floating glassmorphism testimonial cards

PRO

Hero85: Fullscreen Hero with Floating Testimonials

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringMain headline
descriptionstringSupporting 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
testimonialsTestimonial[][]Floating quote cards anchored to the bottom of the viewport
invertColorbooleantrueSwitches text, overlay, and card colors between dark-background and light-background styling
classNamestringExtra classes for the outer <section>
ts
type Testimonial = {
  name: string;
  title: string;
  quote: string;
  avatar?: { src: string; alt: string };
  rating?: number;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero81

Fullscreen Hero with Quick-Access Cards

Cinematic fullscreen hero with inset background media and glassmorphism quick-access cards

PRO

hero87

Floating Glassmorphism Card Hero

Fullscreen hero with centered glassmorphism card floating over inset background video

PRO

hero86

Fullscreen Hero with Logo Cloud

Cinematic fullscreen hero with inset background video and trusted-by logo strip

PRO

hero100

Fullscreen Hero with Browser Mockup

Fullscreen hero with centered content and browser window frame mockup over inset background video

PRO

hero97

Bottom-Aligned Hero with Stack Cards

Fullscreen bottom-aligned hero with vertical stack cards and inset background video with gradient overlay

PRO

hero99

Fullscreen Hero with Marquee Ticker

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