Manual Installation
This guide provides installation instructions for using MijnUI components manually.
Beta Notice
Currently, we provide only one installation option: Next.js integration.
Requirements
- NextJS 15 or later
- React 19 or later
- Tailwind Css 3.4 or later
Installation Guide
Setting Up Your Next.js Project
Make sure to use Tailwind CSS and Typescript when setting up your Next.js project.
Tailwind CSS Configuration
Configure Tailwind CSS by updating your tailwind.config.ts
file:
Add Tailwind CSS to Your Global Styles
Make sure your global CSS file includes the following Tailwind CSS directives:
That's it
You can now start adding components to your project. Check out the components section to learn more about the available components.
Note:
When using Mijn-UI components manually, you will need to resolve the import paths in your project. This is because all of the code is directly from the package source files.
For example, update your imports like this:
Why Choose Manual Integration?
Manual integration might be the right choice if you need more control or are concerned about the stability of the npm packages.
1. Access to Source Code
- Full control over the components for deeper customization or understanding.
2. Avoid NPM Package Instability
- If you’re concerned about potential breaking changes in the npm packages, manual integration can be a more stable approach.
3. Customizable Foundations
- Modify and extend components directly to suit your needs.
For example, here’s how you can extend the Button variants by manually integrating MijnUI components:
Usage