Installation Guide
Hey there, fellow coder! 🚀 Ready to get started with Aura UI? Good news—no big downloads needed! Let’s keep it simple.
Copy, Paste, and Ship! 🚢
Honestly, if you just want to try out some simple components, you might not need to install anything. Just:
-
Find a component you like in Aura UI.
-
Copy the code.
-
Paste it into your project.
-
Customize as needed and ship it! 🏆
Tailwind CSS
Aura UI loves Tailwind CSS. If you don’t have it yet, let’s get you set up:
-
Install Tailwind CSS:
npm install -D tailwindcss npx tailwindcss init
-
Configure Tailwind: Add the paths to all of your template files in your
tailwind.config.js
file:module.exports = { content: ["./src/**/*.{js,jsx,ts,tsx}"], theme: { extend: {}, }, plugins: [], }
-
Add Tailwind to your CSS: In your CSS file, add the following:
@tailwind base; @tailwind components; @tailwind utilities;
Need more details? Check out the Tailwind CSS installation guide (opens in a new tab).
Icons with React Icons
Our components use some cool icons. Here’s how to get them:
- Install React Icons:
npm install react-icons
Framer Motion (for Animated Components)
Want to add some pizzazz with animations? Use Framer Motion:
- Install Framer Motion:
npm install framer-motion