Dark-overlay hero image with heading, suite/room cards with temperature and capacity badges. For hotels and hospitality.
A dark-overlay hero image carries the badge, heading, and description centered in white text, followed by a three-column grid of suite/room cards, each tagged with a temperature and a capacity badge. Built for hotels and hospitality brands with a handful of distinct rooms or spaces to showcase.
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/about31?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about31?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about31.tsx and the badge and button shadcn/ui primitives it depends on.
The installed file exports about31Demo alongside the block: the exact props behind the preview above. Spread it to get a working about section in one line.
import { About31, about31Demo } from "@/components/beste/block/about31";
export default function AboutPage() {
return <About31 {...about31Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { About31 } from "@/components/beste/block/about31";
export default function AboutPage() {
return (
<About31
badge={{ label: "Arctic Experience" }}
heading="Sleep inside a frozen cathedral"
description="Rebuilt every winter from 30,000 tons of snow and ice."
image={{
src: "https://images.unsplash.com/photo-1551524559-8af4e6624178?w=1200&h=500&fit=crop",
alt: "Ice hotel interior",
}}
suites={[
{
name: "Aurora Suite",
temperature: "-5°C",
capacity: "2 guests",
description: "Carved walls depicting the northern lights.",
},
{
name: "Ceremony Hall",
temperature: "-7°C",
capacity: "80 guests",
description: "Vaulted ice ceiling with crystal chandeliers.",
},
]}
buttons={[{ label: "Book a Night", href: "https://beste.co" }]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Eyebrow badge overlaid on the hero image |
heading | string | – | Heading overlaid on the hero image |
description | string | – | Description overlaid on the hero image |
image | { src: string; alt: string } | – | Hero photo behind the overlay text |
suites | SuiteItem[] | [] | Room/suite cards below the hero |
buttons | ButtonItem[] | [] | Centered CTA row at the bottom |
className | string | – | Extra classes for the outer <section> |
type SuiteItem = {
name: string;
temperature: string;
capacity: string;
description: string;
};
type ButtonItem = {
label: string;
href?: string;
variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};image is also set; without an image prop the entire header block (badge, heading, description) disappears, since all three are nested inside the image && (...) guard.variant="secondary" hardcoded in the JSX, ignoring whatever badge.variant is passed in the prop; only badge.label is actually read.<img width={1200} height={500}> with object-cover rather than the absolute inset-0 fill pattern used elsewhere in the set, so its aspect ratio comes from the intrinsic width/height attributes, not a Tailwind aspect-ratio class.bg-black/50 overlay (z-10) sits between the image and the text (z-20), so overlay text stays legible regardless of the underlying photo's brightness.temperature as variant="secondary" and capacity as variant="outline", so the two are visually distinct even though both are plain strings with no unit validation.about11
Wide hero image with gradient overlay text, inline stats, and a stacked avatar strip of team members.
about43
An oversized about statement hero above three heterogeneous zones: portrait, values and a CTA with stats.
about56
Large heading with dual CTAs and a rating card, a playable video with floating metric cards, and a labelled about block with large paragraphs.
about54
A cinematic wide image with an overlapping inset content card and a stat ribbon.
about14
Horizontal stats row at the top followed by a centered story card with heading, body text, and CTAs.
about60
Team section with an eyebrow, big heading, description and CTA above a responsive grid of people cards (portrait image, name, role).