Staaarter

Version Two Relaunch

A centered relaunch announcement for a major version upgrade: a square eyebrow and heading, a working early-access email form with a success state, and a grid of what's-new feature cards each with an icon, title, and short description.

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 dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/version-two-relaunch.json

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

Usage

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

export default function Page() {
  return <ComingSoon74 {...comingsoon74Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"Coming soon"Small label above the heading.
headingstring"Version 2.0 is almost here"Section heading.
descriptionstring"A faster, redesigned experience..."Section subheading.
featuresFeatureCard[]noneWhat's-new feature cards, each mapped to a fixed lucide icon via its `icon` key.
classNamestringnoneExtra classes for the outer section element.

Types

export type FeatureIconKey = "zap" | "shield" | "sparkles" | "gauge";

export interface FeatureCard {
  id: string;
  icon: FeatureIconKey;
  title: string;
  description: string;
}

Behavior notes

  • Real interactivity: a useState-driven email form swaps to a success message on submit, same pattern as the rest of the category's waitlist forms.
  • Each feature's `icon` is a string key ("zap" | "shield" | "sparkles" | "gauge") looked up against a fixed internal map of lucide-react icons, never an icon component passed directly as a prop.
  • The feature cards themselves are a static grid, nothing about them updates after submit.