A niche UI component library for developers — precision-crafted components with interaction in mind.
Built with Next.js, Tailwind CSS, and shadcn/ui.
# Install dependencies
npm install
# Start the dev server
npm run devOpen http://localhost:3000 to view the landing page.
app/
├── page.tsx # Landing page
├── layout.tsx # Root layout
├── globals.css # Global styles
└── Documentation/
├── layout.tsx # Docs layout (sidebar + content)
└── page.tsx # Docs landing page
components/
├── sidebar.tsx # Collapsible dark sidebar
├── hero-content.tsx # Landing page hero section
└── ...