Install Aura Design System with Next.js
Setting up Tailwind CSS in a Next.js project with Aura Design System.
Create your project
Start by setting up a new Next.js project if you haven’t already. The most common method is to use Create Next App.
Install Radix UI
Radix UI is a set of accessible, high-quality, and unstyled UI components for React applications. It provides a solid foundation for building custom components with accessibility and flexibility in mind. To install Radix UI, use the following command with pnpm:
Install Tailwind CSS
Set up Tailwind CSS by installing @tailwindcss/postcss along with its peer dependencies using pnpm.
Configure PostCSS Plugins
Create a postcss.config.mjs file in your project's root directory and include the @tailwindcss/postcss plugin in your PostCSS configuration.
Import Tailwind CSS
Add an @import to ./app/globals.css that imports Tailwind CSS.
Install Aura Design System
Set up Aura Design System by installing the necessary packages along with its peer dependencies using pnpm.
Initial Configuration of Aura Design with Tailwind CSS
This is the initial setup for integrating Aura Design System with Tailwind CSS. Below is the configuration file that defines custom theme variables, spacing, and color schemes, while also importing the necessary styles from Aura Design System.