Store Drop Coming SoonPRO

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.

ComingSoon58: Store Drop Coming Soon

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered above the heading via Badge6
labelsComingSoon58Labels{}Drop-card caption and date, price suffix, and form placeholder and success strings
headingstringDrop heading
descriptionstringSupporting paragraph under the heading
productsProductItem[][]Teaser cards, each with an image, a name, and a blurred price
classNamestringExtra classes for the outer <section>
ts
type ProductItem = {
  image: { src: string; alt: string };
  name: string;
  teasedPrice: string;
};

type ComingSoon58Labels = {
  dropCaption?: string;
  dropDate?: string;
  priceSuffix?: 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

comingsoon63

Product Pre-Order Teaser

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.

PRO

comingsoon57

Event Tickets Coming Soon

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.

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

comingsoon22

Coming Soon Notify Page

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.

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

comingsoon56

Restaurant Opening Soon

A hospitality coming-soon section with an interior image beside a venue name, a square eyebrow, a heading, an opening details grid with icons, and a working email list form with a success state.