Giant Wordmark Hero

Editorial studio hero with a vertical parenthetical side label, monospace corner links, an oversized centered wordmark with tagline, and a full-bleed strip of rounded portrait tiles below.

PRO

Hero117: Giant Wordmark Hero

Editorial studio hero built around an oversized centered wordmark: a vertical parenthetical badge pinned to the left edge, monospace nav links in the top-right corner, the giant wordmark and tagline in the middle, and a full-bleed horizontal marquee of rounded portrait tiles below.

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/hero117?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/hero117.tsx, the badge7 component it uses for the vertical side label, and its dependencies.

Quick start

The installed file exports hero117Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.

tsx
import { Hero117, hero117Demo } from "@/components/beste/block/hero117";

export default function Page() {
  return <Hero117 {...hero117Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Hero117 } from "@/components/beste/block/hero117";

export default function Page() {
  return (
    <Hero117
      badge={{ label: "Est. 2014" }}
      wordmark="Northwind"
      subheading="An independent design studio for brands with something to say."
      links={[
        { label: "Work", href: "https://beste.co" },
        { label: "Studio", href: "https://beste.co" },
        { label: "Contact", href: "https://beste.co" },
      ]}
      images={[
        {
          src: "https://images.unsplash.com/photo-1514214089800-6f1f3ae37854?w=800&h=1000&fit=crop",
          alt: "Close-up of orange flowers",
        },
        {
          src: "https://images.unsplash.com/photo-1603155923045-684bf9d6d3b9?w=800&h=1000&fit=crop",
          alt: "Portrait in warm light",
        },
        {
          src: "https://images.unsplash.com/photo-1550597186-61e0fc2a77bc?w=800&h=1000&fit=crop",
          alt: "Studio portrait",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Vertical parenthetical label pinned to the left edge; only shown on lg and up
wordmarkstringThe giant centered heading text
subheadingstringTagline shown under the wordmark
linksNavLink[][]Monospace nav links in the top-right, separated by /
imagesStripImage[][]Portrait tiles for the bottom marquee strip
classNamestringExtra classes for the outer <section>
ts
type NavLink = {
  label: string;
  href: string;
};

type StripImage = {
  src: string;
  alt: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero120

Editorial Image Hero

Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.

PRO

hero112

Editorial Split Hero

Two-column studio hero with a two-tone headline, dual CTAs, tall image and a client wordmark strip.

PRO

hero116

Studio Reel Hero

Editorial hero with twin vertical image marquees scrolling in opposite directions beside the headline.

PRO

hero119

Full-Bleed Display Hero

Full-bleed image hero with an oversized three-word display heading, a row of monospace meta labels, a bold sub-headline, and a featured card with thumbnail, category, paginated index, and title.

PRO

hero145

Editorial Product Hero

An editorial hero with an eyebrow and an oversized full-width light heading, then a lower row pairing a paragraph and two accent buttons with an image tile that floats a live app window frame.

PRO

hero122

Typographic Card Hero

Centered typographic hero on a muted card with an oversized heading, inline CTA, and a bottom monospace meta row of three labels.