A React + Tailwind CSS dashboard for managing online courses.
- React 18 – UI framework
- Vite – Build tool
- Tailwind CSS – Styling
- React Router – Routing
- Lucide React – Icons
src/
├── components/ # Reusable UI components
│ └── Sidebar.tsx
├── layouts/ # Layout wrappers
│ └── MainLayout.tsx
├── pages/ # Route pages
│ ├── HomePage.tsx
│ └── PlaceholderPage.tsx
├── App.tsx
├── main.tsx
└── index.css
-
Install dependencies:
npm install
-
Start the dev server:
npm run dev
-
Open http://localhost:5173 in your browser.
npm run dev– Start development servernpm run build– Build for productionnpm run preview– Preview production build