Staaarter

Store Drop Coming Soon

A centered coming-soon screen for an upcoming store drop. Shows a drop-date card, a grid of product teaser cards with placeholder artwork and blurred prices to build anticipation without revealing pricing, and a working email-notify form with a confirmation state.

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

npx shadcn add https://staaarter.com/r/store-drop-coming-soon.json

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

Usage

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

export default function Page() {
  return <ComingSoon58 {...comingsoon58Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"Coming soon"Small label above the heading.
headingstring"The next drop is almost here"Main heading.
descriptionstring"Get on the list and we'll email you..."Supporting copy under the heading.
dropDateLabelstringnoneFormatted date/time text shown in the drop-date card.
productsProductTeaser[]noneProduct teaser cards with a name and a blurred price.
classNamestringnoneExtra classes for the outer section element.

Types

interface ProductTeaser {
  name: string;
  price: 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.
  • Product thumbnails are decorative gradient placeholders (not a real image dependency), and each price is CSS-blurred (blur-sm select-none) rather than actually hidden, purely a visual teaser.
  • The drop-date card renders a formatted string prop as-is, no Date.now() or new Date() is ever called in the render path.