Framed Editorial Launch

(Opening soon)
(Opening soon)

Auralis

An independent design studio, months in the making. Leave your address and step inside before anyone else.

First hundred names get founder access.

A framed abstract artwork in a quiet gallery
About this block

Framed Editorial LaunchPRO

A two-column coming-soon section with a vertical monospace edge label, an oversized wordmark, a tagline and a working email notify form, beside a framed portrait image tile.

ComingSoon49: Framed Editorial Launch

A two-column Auralis coming-soon section with a vertical monospace edge label, an oversized wordmark, a tagline, and a working email notify form, set beside a framed portrait image tile.

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/comingsoon49?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/comingsoon49.tsx.

Quick start

The installed file exports comingsoon49Demo alongside the block: the exact props behind the preview above. Spread it to get a working editorial launch section in one line.

tsx
import { ComingSoon49, comingsoon49Demo } from "@/components/beste/block/comingsoon49";

export default function Page() {
  return <ComingSoon49 {...comingsoon49Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { ComingSoon49 } from "@/components/beste/block/comingsoon49";

export default function Page() {
  return (
    <ComingSoon49
      badge={{ label: "Opening soon" }}
      labels={{
        placeholder: "you@studio.com",
        success: "You're in. We'll knock the day we open.",
        note: "First hundred names get founder access.",
      }}
      wordmark="Auralis"
      tagline="An independent design studio, months in the making."
      image={{ src: "/artwork.jpg", alt: "A framed abstract artwork" }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeParenthetical eyebrow rendered via Badge7, vertical on desktop
labelsComingSoon49Labels{}Form placeholder, success message, and note line
wordmarkstringOversized wordmark
taglinestringSupporting line under the wordmark
imageImageItemFramed portrait image tile on the right
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

type ImageItem = {
  src: string;
  alt: string;
};

type ComingSoon49Labels = {
  placeholder?: string;
  success?: string;
  note?: string;
};

Behavior notes

  • The badge renders twice through Badge7: a vertical edge label shown only from md up, and a horizontal variant shown only below md, so the eyebrow flips orientation with the breakpoint.
  • The email form owns its own state; handleSubmit calls preventDefault and only flips to the success pill when the trimmed email is non-empty, so there is no external callback to wire.
  • The labels.note line renders under the form only while it has not been submitted, and disappears once the success pill takes its place.
  • The image renders on the right only when image is set, framed inside a bordered bg-muted mat with an inner 4/5 aspect crop.
  • Every region is optional and every string is plain text with no inline markup parsing, so any 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

comingsoon53

Next Issue Magazine

A two-column coming-soon section styled as a magazine launch with an accent-badged cover image, a masthead, a square eyebrow, a heading, a numbered contents list, and a working email subscribe form.

PRO

comingsoon29

Upcoming Writing Grid

A newsletter-forward pre-launch section with a monospace parenthetical eyebrow, a heading and subscribe pill button on top, and a three-card grid of upcoming articles each with a kind label, title, and summary.

PRO

comingsoon16

Image Split Waitlist

A two-column pre-launch section with a monospace parenthetical eyebrow, an oversized headline, a working rounded email-capture form with a success state, an avatar social-proof row, and a tall full-bleed image carrying a floating launch label.

PRO

comingsoon46

Split Screen Launch

A full-height split coming-soon page with a dark brand panel carrying a wordmark, a monospace parenthetical eyebrow, a heading and a working email notify form, beside a full-bleed image with a floating launch label.

PRO

comingsoon19

Pre-Launch Manifesto

A pre-launch manifesto section on a soft muted card with a monospace parenthetical eyebrow, a large statement heading, and a three-column ruled list of numbered building principles above a follow-along pill button.

PRO

comingsoon48

Bento Launch Grid

A coming-soon bento grid with a large panel holding a wordmark, a monospace parenthetical eyebrow, a heading and a working email notify form, an image tile, and a dark social-proof tile with an avatar stack and waitlist count.