Product Pre-Order Teaser

A minimal field watch on a neutral surface
(Pre-order soon)

The Field Watch, Series 02.

Machined titanium, a sapphire face, and a movement built to outlive its trends. Reserve yours before the first run sells out.

ShipsNovember 2026
Case
38mm titanium
Glass
Sapphire crystal
Water
100m rated
About this block

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

  • The notify form owns its email state and swaps to a success panel on submit; handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.
  • The image renders only when set, as a plain <img> filling a bg-muted frame beside the copy column.
  • The ship-date line renders whenever labels.releaseLabel or labels.releaseValue is set, pairing a muted label with a bold value over a top border.
  • The spec grid renders only when specs is non-empty, as three columns of label-over-value pairs below the form.
  • Following the Auralis monochrome language, the form is a rounded-full pill with a bg-foreground text-background submit button, and the eyebrow, heading, and tagline each render only when their prop is present; every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.

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

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

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

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.

PRO

comingsoon29

Upcoming Writing Grid

A newsletter-forward pre-launch section with a monospace parenthetical eyebrow, a heading and subscribe pill button on top, and a three-card grid of upcoming articles each with a kind label, title, and summary.