Follow these steps to set up your development environment:
npm install
in the root directory. We use npm to maintain consistency in our dependencies.The project is organized into these main directories:
Take some time to explore the codebase and understand its structure. The organization is straightforward, making it easy to start contributing once you're familiar with it.
We use Storybook for component development and testing. You can explore our existing components and work-in-progress features in the WIP section. Storybook is essential for developing and testing new components.
To start Storybook, run npm run sb
in the root directory.
To work on the documentation website, you'll need to run the development server. This is necessary for updating existing documentation, adding new pages, or modifying components.
First, navigate to the docs directory: cd docs
Then start the Next.js development server: npm run dev