Components
A small tagline or eyebrow label with badge, outline, ghost, and pill variants for marketing sections.
Loading preview...
import { Tagline } from "@/components/ui/tagline";
export default function TaglineDemo() {
return (
<div className="flex flex-col items-center gap-4">
<Tagline>Introducing</Tagline>
<div className="flex flex-wrap items-center justify-center gap-2">
<Tagline variant="primary">New</Tagline>
<Tagline variant="secondary">Beta</Tagline>
<Tagline variant="badge">v2.0</Tagline>
<Tagline variant="outline">Popular</Tagline>
<Tagline variant="ghost">Coming soon</Tagline>
</div>
</div>
);
}