Product Pre-Order TeaserPRO

A product launch coming-soon section with a full-height product image beside a monospace parenthetical eyebrow, a product name, a tagline, a ship date, a working notify email form, and a spec grid.

ComingSoon63: Product Pre-Order Teaser

An Auralis product launch coming-soon section that sets a full-height product image beside a monospace parenthetical eyebrow, a product name, a tagline, a ship date, a working notify email form that swaps to a success state, and a spec grid.

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

Base UI flavor

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

This installs the block to components/beste/block/comingsoon63.tsx.

Quick start

The installed file exports comingsoon63Demo alongside the block: the exact props behind the preview above. Spread it to get a working pre-order teaser in one line.

tsx
import { ComingSoon63, comingsoon63Demo } from "@/components/beste/block/comingsoon63";

export default function Page() {
  return <ComingSoon63 {...comingsoon63Demo} />;
}

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

tsx
import { ComingSoon63 } from "@/components/beste/block/comingsoon63";

export default function Page() {
  return (
    <ComingSoon63
      badge={{ label: "Pre-order soon" }}
      heading="The Field Watch, Series 02."
      tagline="Machined titanium, a sapphire face, and a movement built to outlive its trends. Reserve yours before the first run sells out."
      specs={[
        { label: "Case", value: "38mm titanium" },
        { label: "Glass", value: "Sapphire crystal" },
        { label: "Water", value: "100m rated" },
      ]}
      image={{ src: "/watch.jpg", alt: "A minimal field watch on a neutral surface" }}
      labels={{
        releaseLabel: "Ships",
        releaseValue: "November 2026",
        placeholder: "you@studio.com",
        success: "You're on the list. We'll open pre-orders to you first.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeParenthetical eyebrow rendered above the heading via Badge7
labelsComingSoon63Labels{}Ship date label and value, and form placeholder and success strings
headingstringProduct name headline
taglinestringSupporting paragraph under the heading
specsSpecItem[][]Three-column spec grid under the form
imageImageItemFull-height product image beside the copy
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

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

type SpecItem = {
  label: string;
  value: string;
};

type ComingSoon63Labels = {
  releaseLabel?: string;
  releaseValue?: string;
  placeholder?: string;
  success?: string;
};

Behavior notes

Wiring the form up

The form ships with local state and a success message but no backend, so submissions are not sent anywhere until you connect one. Point handleSubmit at your own route handler or email platform, or wire in a form library. For a walkthrough of the options, see React Hook Form, TanStack Form, and Formisch.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon58

Store Drop Coming Soon

An e-commerce coming-soon section with a square eyebrow, a heading, a drop-date card, a grid of product teaser cards with blurred prices, and a working email notify form with a success state.

PRO

comingsoon54

Locked Product Preview

A two-column coming-soon section with a square eyebrow, a heading and a working email notify form, beside a browser-window mockup showing a blurred, lock-badged product preview.

PRO

comingsoon33

Video Teaser Reveal

A full-bleed image pre-launch teaser with a dark overlay, a monospace parenthetical eyebrow, a central play button that opens the teaser video in a modal, a heading and supporting line, and a light outline waitlist pill button.

PRO

comingsoon68

Album Release Pre-Order

A music release coming-soon section with a square cover image beside an artist name, a monospace parenthetical eyebrow, a title, a release date, a working pre-order email form, and a numbered tracklist.

PRO

comingsoon77

Full-Bleed Launch Countdown

A pre-launch section on a full-bleed photograph under a dark gradient, with a light display heading, four oversized countdown figures between hairline rules, and a working email capture card.

PRO

comingsoon18

Launch Season Reveal

A full-bleed image pre-launch hero with a dark overlay, a monospace parenthetical eyebrow, a small kicker, an oversized launch-date headline, a supporting line, and a light outline pill notify button.