Store Drop Coming Soon

The Drop

The autumn collection lands Friday.

Twelve pieces, made in small runs. Join the list for early access and prices, fifteen minutes before everyone else.

Drops

Friday, 10am

Product teaser

The Everyday Tee

$

Product teaser

Trail Runner

$

Product teaser

Weekender Bag

$

About this block

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

  • 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 drop-date card renders whenever labels.dropCaption or labels.dropDate is set, floating to the right of the heading on wider screens with the date in the accent color.
  • The product grid renders only when 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.
  • Each product image is a nested { src, alt } object rendered as a plain <img> inside a 4:5 bg-muted frame.
  • The eyebrow, heading, and description each render only when their prop is present, and 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

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

comingsoon15

Waitlist Coming Soon

A centered pre-launch section with an eyebrow, a large light heading, a paragraph, an image tile holding a working email-capture form with a success state, and a social-proof note.

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.