Staaarter

Product Pre-Order Teaser

A two-column pre-order teaser for a physical product. The left column is a full-height product photo, hidden below the lg breakpoint. The right column has a monospace eyebrow, the product name and tagline, a ship-date line, a working notify email form with a confirmation state, and a spec grid.

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 media-slot dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/product-pre-order-teaser.json

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

Usage

The file also exports comingsoon63Demo, 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 { ComingSoon63, comingsoon63Demo } from "@/components/blocks/coming-soon/comingsoon63";

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

Props

PropTypeDefaultDescription
imageMediaSlotImageundefinedFull-height product photo on the left.
eyebrowstring"(pre-order)"Monospace label above the product name.
productNamestringnoneProduct name heading.
taglinestring"Designed from the ground up, built to last."Supporting copy under the product name.
shipDateLabelstringnoneFormatted ship-date text shown below the tagline.
specsProductSpec[]noneLabel/value spec pairs rendered in a two-column grid.
classNamestringnoneExtra classes for the outer section element.

Types

interface ProductSpec {
  label: string;
  value: string;
}

Behavior notes

  • The email field and submit are real client state (useState): submitting swaps the form for a confirmation message, nothing is sent to a server.
  • The spec grid is fully static, and the ship-date label renders a formatted string prop as-is, no Date.now() or new Date() is ever called in the render path.
  • The photo column is hidden below the lg breakpoint (hidden lg:block), so on small screens only the details column renders.