Version 2A.27
Root Over Education is a modern, responsive e-learning platform dedicated to mastering science subjects for SSC, HSC, and BSc students. Built with the cutting-edge Next.js 16 and Tailwind CSS 4, this application provides a premium user experience for students and a robust management interface for administrators.
- Manage Videos Filters: Added advanced filtering options to the admin "Manage Videos" dashboard. Admins can now instantly filter the video list by department, year, and subject to easily manage and locate educational content.
- Domain Migration: Successfully migrated the live frontend deployment and updated all CORS and connectivity logic to point towards our new primary domain
rootover.site.
- User Ban System: Admin users now have full capability to ban or unban users via sweetalert confirmations and red "BANNED" badges inline.
- Improved User Search: Eliminates case sensitivity strictly making the dashboard search fluid for finding any student queries.
- Course Publishing Toggle: Easily switch courses from "Published" to "Draft" states to ensure content isn't published prematurely to students. Visual badges are also available for fast navigation.
- Modern & Premium UI: A custom-designed interface focusing on aesthetics and usability, featuring glassmorphism effects, smooth transitions, and a cohesive design system.
- Dynamic Course Management:
- Detailed course listings with difficulty levels, departments, and pricing.
- Interactive course curriculum viewer.
- Video Learning Hub:
- Secure video delivery for paid courses.
- Chapter and part organization (e.g., "Differentiation - Part 1").
- Integrated lecture notes and resource links.
- Role-Based Dashboards:
- Student Dashboard: Track progress, access purchased courses, and manage profile.
- Admin Dashboard: Comprehensive tools to manage courses, students, and upload video content.
- Video Management:
- Upload and edit video details including Subject, Chapter, Part, and Access Level (Free/Paid).
- Bulk management of educational content.
- Authentication: Secure registration and login powered by Firebase Authentication.
- Responsive Design: Fully optimized experience across mobile, tablet, and desktop devices.
- Live Frontend: https://rootovereducation.vercel.app
- Live Backend API: https://root-over-edu-backend.vercel.app
- Framework: Next.js 16 (React 19)
- Styling: Tailwind CSS 4
- Authentication: Firebase Auth
- Backend Integration: Axios (Consumes external Express/MongoDB API)
- Icons: Lucide React
- UI Components: Custom components with Radix-like accessibility primitives.
- Notifications: SweetAlert2, Sonner
Follow these steps to set up the project locally.
- Node.js 18+ installed
- npm or yarn
-
Clone the repository
git clone https://github.com/MuntasirTonoy/root-over-education.git cd root-over-education -
Install dependencies
npm install
-
Configure Environment Variables Create a
.env.localfile in the root directory and add your Firebase and Backend API configuration:# Backend API NEXT_PUBLIC_API_URL=http://localhost:5000 # Firebase Configuration NEXT_PUBLIC_FIREBASE_API_KEY=your_api_key NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=your_project.firebaseapp.com NEXT_PUBLIC_FIREBASE_PROJECT_ID=your_project_id NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=your_project.appspot.com NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=your_sender_id NEXT_PUBLIC_FIREBASE_APP_ID=your_app_id
-
Run the development server
npm run dev
Open http://localhost:3000 with your browser to see the result.
src/
├── app/ # Next.js App Router pages
│ ├── dashboard/ # Protected dashboard routes (Student/Admin)
│ ├── course/ # Course public details pages
│ ├── checkout/ # Payment and checkout flows
│ └── ...
├── components/ # Reusable UI components
├── context/ # React Context (AuthContext, etc.)
├── lib/ # Library configurations (Firebase, generic utils)
└── ...
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the project
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.