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.
A Polaris e-commerce coming-soon section with a square eyebrow, a heading, a description, a drop-date card, a grid of product teaser cards with blurred prices, and a working email notify form that swaps to a success state.
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.
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
npx shadcn add "https://ui.beste.co/r/comingsoon58?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon58?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon58.tsx.
The installed file exports comingsoon58Demo alongside the block: the exact props behind the preview above. Spread it to get a working store drop page in one line.
import { ComingSoon58, comingsoon58Demo } from "@/components/beste/block/comingsoon58";
export default function Page() {
return <ComingSoon58 {...comingsoon58Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon58 } from "@/components/beste/block/comingsoon58";
export default function Page() {
return (
<ComingSoon58
label="The drop"
heading="The autumn collection lands Friday."
description="Twelve pieces, made in small runs. Join the list for early access and prices, fifteen minutes before everyone else."
products={[
{ image: { src: "/tee.jpg", alt: "Product teaser" }, name: "The Everyday Tee", teasedPrice: "38" },
{ image: { src: "/runner.jpg", alt: "Product teaser" }, name: "Trail Runner", teasedPrice: "120" },
{ image: { src: "/bag.jpg", alt: "Product teaser" }, name: "Weekender Bag", teasedPrice: "95" },
]}
labels={{
dropCaption: "Drops",
dropDate: "Friday, 10am",
priceSuffix: "",
placeholder: "Enter your email",
success: "You're on the list. We'll ping you the moment it drops.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered above the heading via Badge6 |
labels | ComingSoon58Labels | {} | Drop-card caption and date, price suffix, and form placeholder and success strings |
heading | string | – | Drop heading |
description | string | – | Supporting paragraph under the heading |
products | ProductItem[] | [] | Teaser cards, each with an image, a name, and a blurred price |
className | string | – | Extra classes for the outer <section> |
type ProductItem = {
image: { src: string; alt: string };
name: string;
teasedPrice: string;
};
type ComingSoon58Labels = {
dropCaption?: string;
dropDate?: string;
priceSuffix?: string;
placeholder?: string;
success?: string;
};handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.labels.dropCaption or labels.dropDate is set, floating to the right of the heading on wider screens with the date in the accent color.products is non-empty, and each card teases the price by rendering a plain $, the teasedPrice under a blur-[7px] select-none aria-hidden span, and an optional labels.priceSuffix, so the figure is visually obscured rather than removed.image is a nested { src, alt } object rendered as a plain <img> inside a 4:5 bg-muted frame.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.
comingsoon63
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.
comingsoon57
An event coming-soon section with a square eyebrow, an event name and heading, a date and venue meta row with icons, a working ticket-alert email form, and a speaker avatar row.
comingsoon54
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.
comingsoon22
A centered coming-soon launch page with a brand wordmark, a square eyebrow, an accent-highlighted heading, a working email notify form with a success state, a launch note, and a row of social links.