Album Release Pre-Order
A two-column pre-release screen for a music album. One side shows a square album cover photo. The other side has the artist name, an eyebrow, album title, release date, a working pre-order email form with a success state, and a numbered tracklist below it.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its media-slot dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/album-release-pre-order.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon68.tsx instead.
Usage
The file also exports comingsoon68Demo, 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 { ComingSoon68, comingsoon68Demo } from "@/components/blocks/coming-soon/comingsoon68"; export default function Page() { return <ComingSoon68 {...comingsoon68Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| artistName | string | none | Artist name, shown above the album title. |
| eyebrow | string | "New album" | Small label above the artist name. |
| albumTitle | string | none | The album's title, rendered as the main heading. |
| releaseDate | string | none | Human-readable release date shown under the heading. |
| description | string | "Pre-order now and the album will land in your inbox..." | Supporting copy under the release date. |
| coverImage | MediaSlotImage | undefined | Square album cover photo. |
| tracks | string[] | none | Track titles rendered in the numbered tracklist. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- The pre-order email form is real client state (useState): submitting swaps it for a confirmation message, nothing is sent to a server.
- The album cover photo and the tracklist are both static, non-interactive content.
More Coming Soon Blocks
View all →countdown-timer-launch
Countdown Timer Launch
A centered launch page with a live days/hours/minutes/seconds countdown to a target date.
development-progress-milestones
Development Progress Milestones
A centered launch page with an overall progress bar and a milestone tracker list with status badges.
social-connect-launch
Social Connect Launch
A centered coming-soon page with pill-style outline buttons linking out to Twitter, GitHub, LinkedIn, and email.
animated-icons-preview
Animated Icons Preview
A centered coming-soon page with a row of bobbing icon tiles and a pulsing build-status indicator.
sneak-peek-feature-grid
Sneak Peek Feature Grid
A centered coming-soon page with a grid of blurred feature cards teased behind a lock icon overlay.
waitlist-with-avatars
Waitlist with Avatars
A centered coming-soon page with a working waitlist signup form, stacked subscriber avatars, and a live join count.