Staaarter

Mobile App Pre-Register

A split-screen coming-soon layout for a mobile app launch. The left side pairs an eyebrow, heading, and iOS/Android platform badges with a pre-register button, while the right side shows a portrait app-preview tile with a floating pre-registration-count badge overlaid on the bottom edge.

By Staaarter Team
Coming Soon
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button, badge, media-slot dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/mobile-app-pre-register.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon24.tsx instead.

Usage

The file also exports comingsoon24Demo, 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 { ComingSoon24, comingsoon24Demo } from "@/components/blocks/coming-soon/comingsoon24";

export default function Page() {
  return <ComingSoon24 {...comingsoon24Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"Coming soon"Small label above the heading.
headingstring"The app is almost here"Main heading.
descriptionstring"Pre-register now to get notified..."Supporting copy under the heading.
preRegisterCountstring"12,400+ pre-registered"Text shown in the floating counter overlay on the preview tile.
previewMediaSlotImagenonePortrait app-preview image, falls back to a gradient placeholder if omitted.
preRegisterHrefstring"#"Link target for the "Pre-register" button.
classNamestringnoneExtra classes for the outer section element.

Behavior notes

  • Fully static server component: the platform badges, the pre-register button, and the floating counter overlay are all inert, non-functional preview elements with no client-side state.
  • The "Pre-register" button is a plain link (`render={<Link href={preRegisterHref} />}`), not a form submission.
  • The preview tile falls back to MediaSlot's gradient placeholder if no `preview` image is supplied, so the block still looks complete without a real photo.