A personal coming-soon page with a monospace parenthetical eyebrow, an oversized name, a role and tagline, an email contact pill button, a row of social links, and an availability status line.
An Auralis personal coming-soon page that centers a monospace parenthetical eyebrow, an oversized name, a role and tagline, an email contact pill button, a row of social icon links, and a pulsing availability status line.
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.
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
npx shadcn add "https://ui.beste.co/r/comingsoon60?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon60?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon60.tsx.
The installed file exports comingsoon60Demo alongside the block: the exact props behind the preview above. Spread it to get a working portfolio holding page in one line.
import { ComingSoon60, comingsoon60Demo } from "@/components/beste/block/comingsoon60";
export default function Page() {
return <ComingSoon60 {...comingsoon60Demo} />;
}Then replace the demo with your own props. The socials icons come from lucide-react, so import the ones you need. Written out, a trimmed setup looks like this:
import { Dribbble, Instagram, Linkedin } from "lucide-react";
import { ComingSoon60 } from "@/components/beste/block/comingsoon60";
export default function Page() {
return (
<ComingSoon60
badge={{ label: "Under construction" }}
name="Mara Ellison"
role="Designer & Art Director"
tagline="My new portfolio is nearly ready. In the meantime, the work still speaks for itself, just reach out."
contact={{ label: "Email me", href: "mailto:hi@maraellison.com" }}
socials={[
{ label: "Dribbble", href: "/dribbble", icon: Dribbble },
{ label: "Instagram", href: "/instagram", icon: Instagram },
{ label: "LinkedIn", href: "/linkedin", icon: Linkedin },
]}
labels={{
statusText: "Currently open to new projects",
socialsCaption: "Find me on",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Parenthetical eyebrow rendered above the name via Badge7 |
labels | ComingSoon60Labels | {} | Availability status and socials caption strings |
name | string | – | Oversized name headline |
role | string | – | Role line under the name |
tagline | string | – | Supporting paragraph under the role |
contact | ActionLink | – | Email contact pill rendered via Button12 with a Mail icon |
socials | SocialLink[] | [] | Row of social icon links |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type ActionLink = {
label: string;
href: string;
};
type SocialLink = {
label: string;
href: string;
icon: LucideIcon;
};
type ComingSoon60Labels = {
statusText?: string;
socialsCaption?: string;
};contact pill renders as a real link via Button12 asChild wrapping a Next.js <Link href={contact.href} /> with a Mail icon, so it navigates rather than firing a handler.socials is non-empty, mapping each entry to a Next.js <Link> whose icon component is drawn straight from the prop and given an aria-label from social.label.labels.statusText is set, prefixed by a small animate-pulse dot for a live-status feel.max-w-2xl column with the name set in oversized text-5xl to md:text-7xl type, and every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.comingsoon22
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.
comingsoon29
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.
comingsoon15
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.
comingsoon49
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.