Loading...
Loading...
> Marketing-oriented card variants with terminal patterns. Used for feature showcases, metrics, stats displays, and template documentation.
1import {2 Stat,3 StatGroup,4 StyledLabel,5 FeatureItem,6 FeatureList,7 InfoNote,8 PageBadge,9 TemplatePageHeader,10 FeaturesCard,11 MetricCard,12 FeatureCard,13} from "@/components/ui/terminal-card";
1<MetricCard2 code="0x1A"3 title="UI_COMPONENTS"4 value="62+"5 label="UI Components"6 icon={<Box className="size-5" />}7/>
1<StatGroup>2 <Stat label="Speed" value="OPTIMIZED" />3 <Stat label="Integration" value="SEAMLESS" />4 <Stat label="Status" value="ACTIVE" />5</StatGroup>
1<StyledLabel>TEMPLATE FEATURES</StyledLabel>2<StyledLabel showColon={false}>NO COLON</StyledLabel>
1<FeatureList>2 <FeatureItem icon="arrow">Multi-step form wizard</FeatureItem>3 <FeatureItem icon="check">Form validation included</FeatureItem>4 <FeatureItem icon="dot">Custom styling support</FeatureItem>5</FeatureList>
1<InfoNote>Connect to your API to persist data.</InfoNote>2<InfoNote label="TIP">Use environment variables for secrets.</InfoNote>
1<PageBadge>SIGN IN</PageBadge>2<PageBadge prefix="COMPONENT">BUTTON</PageBadge>
Real-time metrics and insights for your application
1<TemplatePageHeader2 badge="DASHBOARD"3 title="Analytics Dashboard"4 description="Real-time metrics and insights for your application"5/>
1<FeaturesCard2 code="0x10"3 title="TEMPLATE FEATURES"4 features={[5 "Authentication flow",6 "Form validation",7 "Error handling",8 "Loading states",9 ]}10 note="Connect to your API for real data."11 featureIcon="check"12/>
Resend integration with React Email templates for beautiful, reliable transactional emails.
TIME SAVED
30+ HRS
COST SAVED
$3K
[INCLUDES]:
1<FeatureCard2 code="0x15"3 title="EMAIL_SYSTEM"4 icon={<Mail className="size-5" />}5 headline="Transactional emails that just work"6 description="Resend integration with React Email templates..."7 stats={[8 { label: "TIME SAVED", value: "30+ HRS" },9 { label: "COST SAVED", value: "$3K" }10 ]}11 includes={["Resend Integration", "React Email Templates", "Preview Mode"]}12 ctaLabel="EMAIL TEMPLATES"13 ctaHref="/docs/features/emails"14/>
| Component | Description |
|---|---|
| Stat | Key-value pair with label and value |
| StatGroup | Container for multiple Stat components |
| StyledLabel | Bracketed label [LABEL]: |
| FeatureItem | List item with icon prefix |
| FeatureList | Container for FeatureItem components |
| InfoNote | Note text [NOTE]: message |
| PageBadge | Page identification badge |
| TemplatePageHeader | Complete page header with badge |
| FeaturesCard | Card with feature list |
| MetricCard | Large metric display card |
| FeatureCard | Marketing card with stats and CTA |