Fullscreen Hero with Floating Testimonials

About this block

Fullscreen Hero with Floating TestimonialsPRO

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

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.

Upgrade Now

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

  • Testimonial avatars use the shadcn 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.
  • Testimonial cards sit in a 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.

More Hero blocks

View all Hero
PRO

hero87

Floating Glassmorphism Card Hero

Fullscreen hero with centered glassmorphism card floating over inset background video

PRO

hero81

Fullscreen Hero with Quick-Access Cards

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

PRO

hero86

Fullscreen Hero with Logo Cloud

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

PRO

hero97

Bottom-Aligned Hero with Stack Cards

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

PRO

hero100

Fullscreen Hero with Browser Mockup

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

PRO

hero83

Bottom-Aligned Hero with Quick Links

Bottom-aligned fullscreen hero with inset background media and right-side quick link cards