Giant Wordmark Hero

(Est. 2014)

Auralis

An independent design studio for brands with something to say.

Close-up of orange flowers
Misty forest landscape
Portrait in warm light
Abstract glowing texture
Sunlit forest canopy
Studio portrait
Close-up of orange flowers
Misty forest landscape
Portrait in warm light
Abstract glowing texture
Sunlit forest canopy
Studio portrait
About this block

Giant Wordmark HeroPRO

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.

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.

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/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

  • The side badge only renders on lg screens and up (hidden lg:block); it is absolutely centered on the vertical axis at the left edge and rendered through Badge7's vertical mode.
  • Nav links are joined inline with a / separator placed before every item except the first, rather than each link getting its own bordered pill or spacing wrapper.
  • The wordmark scales across five breakpoints, from text-6xl on mobile up to text-9xl at lg, and always carries text-balance for even line wrapping if it spans multiple words.
  • The marquee duplicates the full images array once ([...images, ...images]) and scrolls it horizontally with a scoped styled-jsx keyframe (hero117-marquee, 40s linear infinite) via an arbitrary Tailwind animate-[...] value; hovering the strip (group/hero117) pauses it through animation-play-state.
  • Each tile also has its own independent hover scale (hover:scale-105, 500ms), so hovering a single tile zooms it even while the marquee keeps scrolling (or is paused). Left and right edge gradients fade the strip into the section background so tiles appear to scroll in and out rather than clip abruptly.

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

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

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

hero138

Editorial Trust Hero

Static full-bleed editorial hero with an eyebrow badge, a giant display heading, a supporting paragraph, dual seal CTAs, and an overlapping avatar trust row.