···66Inspired by tools like [shadcn/ui](https://ui.shadcn.com/docs), Hip UI focuses on shipping application-ready building blocks, not just isolated inputs and buttons.
77The system is built around [React Aria](https://react-spectrum.adobe.com/react-aria/) for accessibility and [StyleX](https://stylexjs.com/) for styling and tokens.
8899+[Read the docs.]()
1010+911## Why Hip UI
10121113- Copy components into your codebase and customize them freely.
···1416- Start with foundational primitives and scale up to full application layouts.
1517- Explore a broad component set that includes forms, overlays, navigation, data display, and page structure.
16181717-## Documentation
1818-1919-The docs live in this repository and are organized into foundations, components, and showcases.
2020-2121-- [Docs app](./apps/docs)
2222-- [Introduction](./apps/docs/src/docs/introduction.mdx)
2323-- [Foundations](./apps/docs/src/docs/foundations)
2424-- [Components](./apps/docs/src/docs/components)
2525-- [Showcases](./apps/docs/src/docs/showcase)
2626-2727-To run the docs locally:
2828-2929-```bash
3030-pnpm install
3131-pnpm --filter docs dev
3232-```
3333-3434-Then open [http://localhost:3000](http://localhost:3000).
3535-The root route redirects to the introduction page.
1919+## Development
36203721## Quick Start
3822···6448pnpx hip-ui install tooltip
6549```
66506767-## Monorepo Layout
6868-6969-- `packages/hip-ui` - the core component source and CLI used to scaffold components.
7070-- `apps/docs` - the documentation site for foundations, components, and showcases.
7171-- `apps/example` - a small example app for testing components in an app context.
7272-- `packages/typescript-config` - shared TypeScript configuration used across the workspace.
7373-7451## Common Commands
75527653```bash
···8158pnpm lint
8259```
83608484-## What You Will Find In The Docs
6161+## Docs Development
85628686-- Foundations for tokens such as colors, spacing, radius, shadow, typography, and theming.
8787-- Component documentation covering layout, content, navigation, form controls, overlays, collections, and status UI.
8888-- Showcase pages that demonstrate how Hip UI can be used to build complete interfaces.
6363+To run the docs locally:
89649090-## Development Notes
6565+```bash
6666+pnpm install
6767+pnpm --filter docs dev
6868+```
91699292-This repository is organized as a `pnpm` workspace and uses `turbo` for multi-package tasks.
9393-The docs app is built with Vite and MDX, while the component package contains the install CLI and the source for the design system itself.
7070+Then open [http://localhost:3000](http://localhost:3000).
7171+The root route redirects to the introduction page.