🚀 Live Site: https://skill-sparkx.netlify.app/
🛠️ Admin Credentials
- Email:
admin@hero.com - Password:
admin1234
Skill Spark is a modern web application built using the MERN stack (MongoDB, Express.js, React, Node.js) designed to streamline and enhance the experience of educational institutions, teachers, and students. It empowers teachers to manage classes, students to engage and enroll in learning, and admins to control and oversee the entire platform from one dashboard.
-
🔒 Authentication System
- Email/password and Google sign-in
- JWT-based secure access with private routing
-
🎓 Role-Based Dashboards
- Student, Teacher, and Admin dashboards with distinct features and routes
-
🧑🏫 Teacher Application & Class Management
- Teachers can apply, add/edit/delete courses, manage assignments, and track class progress
-
💳 Stripe Payment Integration
- Secure class enrollment with real-time payment and transaction tracking
-
📊 Admin Control Panel
- Manage users, approve/reject teacher applications, control class status, and view class progress
-
✍️ Teaching Evaluation & Feedback System
- Students can submit Teaching Evaluation Reports (TER) with ratings and reviews
-
🗃️ React Query (TanStack)
- Efficient state management for GET and POST (mutations) requests
-
📱 Fully Responsive Design
- Optimized for mobile, tablet, and desktop viewports, including dashboard responsiveness
-
🎉 Interactive UI/UX
- Real-time feedback with SweetAlert2 and toast notifications for all major actions
-
📈 Live Data Statistics
- Dashboard stats for total users, classes, enrollments, and assignment submissions
- Frontend: React, TailwindCSS, DaisyUI, React Hook Form, React Icons, Swiper, Lottie
- Backend: Node.js, Express.js, MongoDB, Stripe API
- Authentication: Firebase Auth + JWT
- State Management: TanStack React Query (v5.82.0)
- UI Enhancements: SweetAlert2, React Hot Toast, HeadlessUI, React Rating Stars
headlessUI- Accessible UI componentsstripe-js- Stripe payment integrationtailwindcss- Utility-first CSS framework with Vite plugin@tanstack-query- Data fetching and cachingaxios- HTTP client for API requestsdaisyUI- Tailwind CSS component libraryfirebase- Authentication and backend serviceslottie-react- Animation support for Reactreact-fast-marquee- Smooth scrolling marquee componentreact-helmet- Manage document headreact-hook-form- Form managementreact-hot-toast- Toast notificationsreact-icons- SVG icons as React componentsreact-router- Routing in React appsreact-simple-star-rating- Star rating componentsweetalert2- Beautiful alert modalsswiper- Touch sliders/carousels
- Clone the Repository
https://github.com/noboKumar/skill-spark.git
cd skill-spark
- Install Dependencies
npm install- Set Environment Variables
Create a .env file in the root directory:
VITE_FIREBASE_API_KEY=your_api_key
VITE_FIREBASE_AUTH_DOMAIN=your_project.firebaseapp.com
VITE_FIREBASE_PROJECT_ID=your_project_id
VITE_FIREBASE_STORAGE_BUCKET=your_project.appspot.com
VITE_FIREBASE_MESSAGING_SENDER_ID=your_sender_id
VITE_FIREBASE_APP_ID=your_app_id
VITE_IMGBB_API_KEY =your_imgbb_API_key
VITE_API_URL=your_api_url
VITE_STRIPE_PUBLIC_KEY=your_stripe_public_key
VITE_SERVER_URL=http://localhost:5000- Start the Development Server
npm run devApp will run at http://localhost:5173
- Navigate to Backend Folder (if it's a separate folder like
/server):
cd server- Install Backend Dependencies
npm install- Create a
.envfile
PORT=5000
MONGODB_URI=your_mongodb_connection_string- Start the Backend Server
npm run devServer will run at http://localhost:5000