Split studio hero pairing a two-tone headline, description and dual CTAs with a uniform 2x2 image collage on the opposite column. Each collage tile is a fixed square with its own hover zoom, keeping the grid tidy rather than an irregular masonry layout.
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/hero114?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero114?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero114.tsx, the badge6 component it uses for the eyebrow label, the button1 component it uses for the primary CTA pill, and their dependencies.
The installed file exports hero114Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero114, hero114Demo } from "@/components/beste/block/hero114";
export default function Page() {
return <Hero114 {...hero114Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero114 } from "@/components/beste/block/hero114";
export default function Page() {
return (
<Hero114
label="Northwind Studio"
heading="Identity systems that <strong>ship and scale.</strong>"
description="From first sketch to full brand system, built for teams that move fast."
buttons={[
{ label: "Start a project", href: "https://beste.co", variant: "primary" },
{ label: "View our work", href: "https://beste.co", variant: "outline" },
]}
images={[
{
src: "https://images.unsplash.com/photo-1558655146-d09347e92766?w=800&h=800&fit=crop",
alt: "Color swatches arranged on a studio desk",
},
{
src: "https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&h=800&fit=crop",
alt: "Poster pinned to a studio wall",
},
{
src: "https://images.unsplash.com/photo-1626785774573-4b799315345d?w=800&h=800&fit=crop",
alt: "Team sketching ideas during a workshop",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow text rendered through Badge6 |
heading | string | – | Headline HTML; wrap a phrase in <strong> to render it muted |
description | string | – | Supporting paragraph, capped at max-w-xl |
buttons | ActionButton[] | [] | CTA row; primary renders as a solid pill, outline as a bordered link |
images | ImageItem[] | [] | Collage tiles; only the first 4 are rendered |
className | string | – | Extra classes for the outer <section> |
type ActionButton = {
label: string;
href: string;
variant?: "primary" | "outline";
};
type ImageItem = {
src: string;
alt: string;
};grid-cols-2 grid; images is sliced to images.slice(0, 4), so passing more than four is silently truncated and passing fewer leaves that many cells simply absent rather than backfilled.group/hero114 hover, independent of its siblings: object-cover image scales to 105% over 500ms on hover of that specific cell.primary button variant goes through Button1; outline is a hand-built bordered Link with uppercase, letter-spaced text, so its focus and hover styling is defined locally in this component rather than inherited from Button1.lg breakpoint; below that, copy and collage stack vertically with the copy first.hero112
Two-column studio hero with a two-tone headline, dual CTAs, tall image and a client wordmark strip.
hero121
Split hero with a big headline and CTA on the left, a divided vertical stat rail on the right, and a full-width wide image strip below.
hero143
A light editorial hero with an oversized display heading on the left, an offset supporting paragraph and accent button on the right, and a full-bleed image band below.
hero89
50/50 split hero with video/image left and content with testimonial quote right
hero102
50/50 split hero with content left and vertical numbered timeline overlay on video right
hero90
Vertical split hero with video/image on top and content section below