Installation

🚀 Quick Start Guide

Welcome, awesome developer! 🌟 Ready to dive into Symbiote UI? It's easier than ever—no long installations, just simple steps to get up and running.

💻 Copy, Paste, Edit, Go Live!

Want to get a taste of Symbiote UI? No need for complicated setups. Just follow these easy steps:

  1. Pick a component you love from Symbiote UI.
  2. Copy the code to your clipboard.
  3. Paste it into your project.
  4. Make it your own by customizing it, and then ship it to the world! 🏆

It's as simple as that!


🌈 Tailwind CSS – Your Styling Superpower

Symbiote UI works hand-in-hand with Tailwind CSS to make your app look amazing. Don’t have it yet? No problem! Let’s get it installed:

  1. Install Tailwind CSS:

    npm install -D tailwindcss
    npx tailwindcss init
  2. 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: [],
    }
  3. 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).


⚡ Add Icons with React Icons

Our components use some cool icons. Here’s how to get them:

  1. Install React Icons:
    npm install react-icons

🎬 Spice it Up with Animations (Framer Motion)

Want to bring your components to life with smooth animations? Use Framer Motion:

  1. Install Framer Motion:
    npm install framer-motion