Skip to content
Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1,939 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸŽ“ Learnova

AI-Powered Smart Student Engagement & Attendance Platform

Transforming Education β€” One Institution at a Time

Live Demo Next.js React Firebase MongoDB Tailwind CSS


🌟 What is Learnova?

Learnova is a modern, AI-powered educational platform built to eliminate the inefficiencies of traditional school management. It replaces manual attendance, siloed data, and disengaged learning with a seamless, integrated experience for every stakeholder in education.

  • πŸ§‘β€πŸ« Teachers regain ~1 hour/day β€” more time to teach, less time on admin
  • πŸŽ’ Students convert ~90+ hours/year of idle time into productive learning
  • 🏫 Institutions improve attendance metrics and engagement across departments
  • πŸ‘¨β€πŸ‘©β€πŸ‘§ Parents gain transparent, real-time insights into their child's progress

✨ Features

πŸ” Role-Based Authentication

  • Separate dashboards for Students, Teachers, Institutes, and Admins
  • Firebase-powered sign-up/login with email verification and password reset
  • Secure protected routes with role-based redirects

πŸ“Έ Face Recognition Attendance

  • AI-powered face recognition using Face API.js for contactless attendance
  • Attendance validation and conflict resolution built-in
  • Reduces manual roll-call time dramatically

πŸ“Š Role-Specific Dashboards

  • Student Dashboard β€” view attendance records and academic progress
  • Teacher Dashboard β€” manage classes, take attendance, monitor students
  • Institute Dashboard β€” oversee departments and institution-wide metrics
  • Admin Dashboard β€” full system administration and user management

πŸ“‹ Notice Board

  • Institution-wide announcements and notices for all roles
  • Real-time updates accessible across dashboards

πŸ“… Activity Centre

  • Track academic and co-curricular activities
  • Centralised log accessible to students and teachers

πŸ€– AI Chatbot

  • Built-in Learnova chatbot for platform assistance
  • Available globally across all pages

πŸ“± Progressive Web App (PWA)

  • Installable on any device β€” mobile or desktop
  • Works in low-network environments for maximum accessibility

πŸ“¬ Contact & Communication

  • Integrated contact form powered by EmailJS
  • Direct communication channel between users and the Learnova team

βš™οΈ Profile & Settings

  • Universal profile management for all roles
  • Customisable settings per user type

πŸ› οΈ Tech Stack

Layer Technology
Framework Next.js 15 (App Router)
UI Library React 19
Styling Tailwind CSS v4
Animations Framer Motion, GSAP
Authentication Firebase Auth
Database MongoDB
File Storage Vercel Blob
Face Recognition Face API.js
Email EmailJS
Analytics Firebase Analytics
PWA @ducanh2912/next-pwa
Notifications React Hot Toast

πŸ“ Project Structure

learnova/
β”œβ”€β”€ app/
β”‚   β”œβ”€β”€ page.js                   # Landing / About page
β”‚   β”œβ”€β”€ layout.js                 # Root layout with metadata & providers
β”‚   β”œβ”€β”€ auth/                     # Sign in / Sign up
β”‚   β”œβ”€β”€ verify/                   # Email verification
β”‚   β”œβ”€β”€ register/                 # New user registration
β”‚   β”œβ”€β”€ profile/                  # Profile setup
β”‚   β”œβ”€β”€ student/dashboard/        # Student dashboard
β”‚   β”œβ”€β”€ teacher/dashboard/        # Teacher dashboard
β”‚   β”œβ”€β”€ institute/dashboard/      # Institute dashboard
β”‚   β”œβ”€β”€ admin/dashboard/          # Admin dashboard
β”‚   β”œβ”€β”€ attendance/               # Attendance management
β”‚   β”œβ”€β”€ activity/                 # Activity centre
β”‚   β”œβ”€β”€ notices/                  # Notice board
β”‚   β”œβ”€β”€ settings/                 # User settings
β”‚   └── contact/                  # Contact page
β”‚
β”œβ”€β”€ components/
β”‚   β”œβ”€β”€ AuthForm.js               # Authentication form
β”‚   β”œβ”€β”€ RoleSelection.js          # Role selection UI
β”‚   β”œβ”€β”€ FaceRecognizer.js         # Face recognition component
β”‚   β”œβ”€β”€ AttendanceValidation.js   # Attendance validation logic
β”‚   β”œβ”€β”€ StudentDashboard.js       # Student dashboard component
β”‚   β”œβ”€β”€ TeacherDashboardComponent.js # Teacher dashboard component
β”‚   β”œβ”€β”€ InstituteDashboard.js     # Institute dashboard
β”‚   β”œβ”€β”€ AdminDashboard.js         # Admin dashboard
β”‚   β”œβ”€β”€ ChatBot.js                # AI chatbot
β”‚   β”œβ”€β”€ noticeBoard.js            # Notice board component
β”‚   β”œβ”€β”€ Navbar.js                 # Navigation
β”‚   β”œβ”€β”€ ProtectedRoute.js         # Route protection
β”‚   β”œβ”€β”€ InstallPWA.js             # PWA install prompt
β”‚   └── profile.js / settings.js  # Profile & settings
β”‚
β”œβ”€β”€ constants/
β”‚   └── userRoles.js              # Role definitions and config
β”‚
β”œβ”€β”€ contexts/
β”‚   └── AuthContext.js            # Global auth state
β”‚
β”œβ”€β”€ hooks/
β”‚   └── useAuth.js                # Authentication hook
β”‚
β”œβ”€β”€ services/
β”‚   └── authService.js            # Firebase auth service
β”‚
β”œβ”€β”€ utils/
β”‚   └── authUtils.js              # Auth utility functions
β”‚
└── lib/
    └── firebaseConfig.js         # Firebase configuration

πŸš€ Getting Started

Prerequisites

  • Node.js 18+
  • A Firebase project (Auth + Analytics enabled)
  • A MongoDB instance (local or Atlas)
  • A Vercel Blob store (for file uploads)

1. Clone the repository

git clone [https://github.com/Premshaw23/Learnova.git](https://github.com/Premshaw23/Learnova.git)
cd Learnova

2. Install dependencies

npm install

3. Configure environment variables

Create a .env.local file in the root directory and add your credentials:

# Firebase
NEXT_PUBLIC_FIREBASE_API_KEY=your_api_key
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=your_auth_domain
NEXT_PUBLIC_FIREBASE_PROJECT_ID=your_project_id
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=your_storage_bucket
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=your_messaging_sender_id
NEXT_PUBLIC_FIREBASE_APP_ID=your_app_id
NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID=your_measurement_id

# MongoDB
MONGODB_URI=your_mongodb_connection_string

# Vercel Blob
BLOB_READ_WRITE_TOKEN=your_vercel_blob_token

# EmailJS
NEXT_PUBLIC_EMAILJS_SERVICE_ID=your_service_id
NEXT_PUBLIC_EMAILJS_TEMPLATE_ID=your_template_id
NEXT_PUBLIC_EMAILJS_USER_ID=your_user_id

4. Run the development server

By default, Next.js starts the development server on port 3000. Run the server using:

npm run dev

Open http://localhost:3000 in your browser.

Note

If you need to run the application on a custom port, use the standard Next.js port configuration:

npm run dev -- -p <port_number>

Avoid using deprecated environment variables like PORT directly in the shell as it is not cross-platform compatible.

5. Build for production

npm run build
npm run start

🌐 Deployment

Learnova is deployed on Vercel. To deploy your own instance:

  1. Push your code to GitHub
  2. Import the repository on vercel.com
  3. Add all environment variables in the Vercel dashboard
  4. Deploy β€” Vercel handles the rest

Live at: https://learnova-web.vercel.app


πŸ‘₯ Meet the Team

Name Role
Prem Shaw Founder & Creator β€” Team Leader, Full-Stack Developer
Prashant Bhati Web Developer
Polawar Pranav Shirish Frontend Developer
Abir Ghosh Machine Learning Specialist
Anuj Ram Shrivastava ML & Backend Developer
Chandana S Testing & Documentation

πŸ’‘ Our Values

Value Description
⚑ Efficiency Streamline workflows and reduce redundancy so educators can focus on teaching
πŸ’œ Engagement Interactive and gamified experiences that motivate students
🌍 Accessibility Designed for all schools, even in low-network areas, with affordable solutions

πŸ“„ License

This project is licensed under the MIT License β€” see LICENSE file for details.

You are free to use, modify, and distribute this software commercially or personally, as long as you include the license and original copyright notice.


🀝 Contributing

We welcome contributions! Please see CONTRIBUTING.md for:

  • How to report bugs
  • Feature request guidelines
  • Development setup instructions
  • Code style standards
  • Pull request process

⚠️ Contribution Limits

To maintain repository quality and ensure fair visibility for all contributors, please note:

Per-Contributor Limits:

  • Maximum 3 open Issues per contributor at a time
  • Maximum 3 open PRs per contributor at a time

Repository-Wide Limit:

  • Maximum 30 open PRs total in the repository at any time

Why these limits?

  • Encourages focused, high-quality work
  • Reduces spam and duplicate submissions
  • Ensures maintainers can review thoroughly
  • Gives all contributors fair visibility
  • Keeps repository manageable and organized

Before opening new Issues/PRs: βœ… Close or merge previous open work
βœ… Ensure proper testing and documentation
βœ… Focus on quality over quantity


πŸ“‹ Code of Conduct

Please read our Code of Conduct before participating.


πŸ”’ Security

Found a security vulnerability? Please report it responsibly to security@learnova.com instead of opening a public issue. See SECURITY.md for details.


πŸ‘₯ Contributors

Premshaw23
Prem Shaw
Prateek2007-cmd
@Prateek2007-cmd
Hrithik-ui753
@Hrithik-ui753
RUSHILPATEL33
@RUSHILPATEL33
mrdeyroy
@mrdeyroy
Pratyush-Panda-2006
@Pratyush-Panda-2006
Vaishnav-Hub9
@Vaishnav-Hub9
sricharan-213
@sricharan-213
leno23
@leno23
pithva007
@pithva007
PRODHOSH
@PRODHOSH
pranav-cholleti
@pranav-cholleti
omnipotentchaos
@omnipotentchaos
Aditya8369
@Aditya8369
harshbok69-bit
@harshbok69-bit
pragya0129
@pragya0129
Siddh2024
@Siddh2024
Sandeep6135
@Sandeep6135
paripnj
@paripnj
nivedha2025cse-gif
@nivedha2025cse-gif
NiranjanDoijode23
@NiranjanDoijode23
Divyanshu227
@Divyanshu227
thevaibhavtyagi
@thevaibhavtyagi
vaishnavijha12
@vaishnavijha12
advikdivekar
@advikdivekar
AdityaNarayanPadhi
@AdityaNarayanPadhi
nimkarprachi17
@nimkarprachi17
HarshaNaidu11
@HarshaNaidu11
Nihal-Reddy-K
@Nihal-Reddy-K
yuvraj-k-singh
@yuvraj-k-singh
varun29sharma
@varun29sharma
udaycodespace
@udaycodespace
pericharlabindhumadhavi-data
@pericharlabindhumadhavi-data
zairahussain27
@zairahussain27
Vikrant0207
@Vikrant0207
KRUSHAL2956
@KRUSHAL2956
priyanshi-coder-2
@priyanshi-coder-2
Copilot
@Copilot
anshika1179
@anshika1179
vedant7007
@vedant7007
Rajal-ui
@Rajal-ui
shauryaparth1902-blip
@shauryaparth1902-blip
tanishrajh
@tanishrajh
vaishalig03
@vaishalig03
Tanish-Solanki
@Tanish-Solanki
ssuyashhhh
@ssuyashhhh
SuhridXSingh
@SuhridXSingh
Pratikshya32
@Pratikshya32
Prashantbhati7
@Prashantbhati7
Nazia012
@Nazia012
Asifmd45
@Asifmd45
ishitaajain22-tech
@ishitaajain22-tech
hitdepani
@hitdepani
atul-upadhyay-7
@atul-upadhyay-7
AdityaSekharDas
@AdityaSekharDas
anujsharma8d
@anujsharma8d
Smrithi-krishna
@Smrithi-krishna
Subham503
@Subham503
codedbydollys10
@codedbydollys10
dhiraj-dev-19
@dhiraj-dev-19
Kritika200520
@Kritika200520
riddhimagupta2
@riddhimagupta2
sujal-rana58
@sujal-rana58
Sha-lini3
@Sha-lini3
vansh-09
@vansh-09
Shayan-Bhowmik
@Shayan-Bhowmik
Nirmai-06
@Nirmai-06
kannatinaveena
@kannatinaveena
KhushiYadav-26
@KhushiYadav-26
khushi897920-lang
@khushi897920-lang
Ketandora
@Ketandora
gowthamrdyy
@gowthamrdyy
Chakshu-Bamotra
@Chakshu-Bamotra
Bhavex
@Bhavex
adityack477
@adityack477
akashgoudsidduluri
@akashgoudsidduluri
AnxhDarji
@AnxhDarji
vikasverma101
@vikasverma101
PanditG4303
@PanditG4303
Thejaswini-VS
@Thejaswini-VS
Tannie02
@Tannie02
Sweksha-Kakkar
@Sweksha-Kakkar
Srushti-Kamble14
@Srushti-Kamble14
karthick7204
@karthick7204
mxskaaan
@mxskaaan
Sagun-Bajpai
@Sagun-Bajpai
sarthakshruti999-code
@sarthakshruti999-code
shambhavivartika06-cmyk
@shambhavivartika06-cmyk
shruti-codes-design
@shruti-codes-design
skypank-coder
@skypank-coder
lover3123
@lover3123
ionfwsrijan
@ionfwsrijan
Shrutika-Dahale
@Shrutika-Dahale
Shashank-8p
@Shashank-8p
savniagrawal1701
@savniagrawal1701
Sanjay452656
@Sanjay452656
pritesh-4
@pritesh-4
Pragya005
@Pragya005
PojashriJM
@PojashriJM
Bhavikapatel06
@Bhavikapatel06
NiravaM
@NiravaM
Meera2906
@Meera2906
Hussain053
@Hussain053
ARCHITVARMA15
@ARCHITVARMA15
Anshika-Gupta9
@Anshika-Gupta9
Achiever199
@Achiever199
pratyuxxhh
@pratyuxxhh

About

The most advanced platform for curriculum planning and attendance management, designed for smooth academic management.

Resources

Code of conduct

Contributing

Security policy

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages