/** * ui-lib — composed components built on top of shadcn/ui primitives * (src/components/ui). These are the building blocks meant for use * inside the template's pages. Every one is var-driven, so it adapts * to the active `data-theme` (minimal | brutalist | aurora) with no * per-theme code. See each component's Storybook story for variants. */ export { StatCard, type StatCardProps } from "./stat-card" export { FeatureCard, type FeatureCardProps } from "./feature-card" export { PricingCard, type PricingCardProps } from "./pricing-card" export { AuthForm, type AuthFormProps } from "./auth-form" export { EmptyState, type EmptyStateProps } from "./empty-state" export { PageHeader, type PageHeaderProps } from "./page-header"