Staaarter

Typographic Wordmark

A dramatic coming-soon screen: a full-bleed background photo with a dark overlay sits behind an oversized, centered wordmark heading, a supporting tagline, and a light outline notify button. Built to feel like a single, confident brand statement rather than a form-first page.

By Staaarter Team
Coming Soon
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button, media-slot dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/typographic-wordmark-teaser.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon31.tsx instead.

Usage

The file also exports comingsoon31Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { ComingSoon31, comingsoon31Demo } from "@/components/blocks/coming-soon/comingsoon31";

export default function Page() {
  return <ComingSoon31 {...comingsoon31Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"(coming soon)"Monospace label above the wordmark.
wordmarkstringnoneOversized centered wordmark/heading text.
taglinestringundefinedOptional supporting line under the wordmark.
imageMediaSlotImageundefinedFull-bleed background photo behind the dark overlay.
notifyLabelstring"Notify me"Label for the decorative notify button.
notifyHrefstring"#"Link target for the notify button.
classNamestringnoneExtra classes for the outer section element.

Behavior notes

  • Fully static, plain Server Component: no client-side state anywhere.
  • The notify button is a plain link (`render={<Link href={notifyHref} />}`) with a placeholder href by default, nothing is submitted.