A clean, dark-themed admin dashboard built using React, Vite, TypeScript, Tailwind CSS, and React Router DOM. Lightweight, blazing fast, and perfect for modern web apps.
🔗 GitHub Repo: Dark Dashboard
You can deploy this on Vercel, Netlify, or any static hosting provider.
- ⚡ Super-fast bundling with Vite
- 🌙 Dark UI theme (fully responsive)
- 🧭 Routing with React Router v7
- ✍️ Written in TypeScript
- 🎨 Utility-first styling using Tailwind CSS
- 💡 Beautiful SVG icons with Lucide React
- 🔍 Code linting with ESLint and TypeScript rules
| Tool | Purpose |
|---|---|
| React | UI library |
| Vite | Development & build tool |
| TypeScript | Static typing |
| Tailwind CSS | Utility-first CSS framework |
| React Router DOM | Client-side routing |
| Lucide React | Icons |
| ESLint | Linting & code quality |
Using npm:
npm installOr using yarn:
yarn installnpm run dev
# or
yarn devApp will be running at:
http://localhost:5173npm run build
# or
yarn buildnpm run preview
# or
yarn previewTailwind is fully customizable via tailwind.config.js. You can modify colors, fonts, spacing, and more.
Lint your code for consistent style and error prevention:
npm run lint
# or
yarn lint