The Component Pack ($24) includes 30 reusable Tailwind CSS v4 components across 8 categories: Buttons (5 variants with 3 sizes), Forms (6 input types), Navigation (top nav, sidebar, tabs, breadcrumbs), Cards (4 layouts), Modals (dialog, slide-in panel, confirm dialog), Alerts (success, error, warning), Data Display (table, badge, avatar), and Layout (container, stack). All components are TypeScript typed and accessible with ARIA labels.
import { Button } from "@/components/ui/Button";
// Available variants: primary, secondary, ghost
// Available sizes: sm, md, lg
<Button variant="primary" size="lg">
Click me
</Button>