Skip to content

priya434960/Learnova

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3,430 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
▢️ Windows(or any OS) with pnpm
pnpm install

3. Configure environment variables

A .env.example file is included in the repo with all required keys. Copy it first:

cp .env.example .env.local

Then fill in your actual values:

# 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
NEXT_PUBLIC_CONTACT_RECEIVER_EMAIL=your-actual-admin-email@example.com
NEXT_PUBLIC_CONTACT_RECEIVER_NAME=Learnova Administration

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.


πŸ› οΈ Troubleshooting

npm install fails

  • Use Node.js 18+ (node -v).
  • Delete node_modules and package-lock.json, then run npm install again.
  • On Apple Silicon, if native modules fail, try npm install --legacy-peer-deps.

Missing or incorrect environment variables

  • Ensure .env.local exists in the project root (not committed to git).
  • Restart the dev server after changing env vars β€” Next.js only reads them at startup.
  • Verify Firebase keys match your Firebase console project settings.

Firebase auth / configuration errors

  • Confirm Email/Password sign-in is enabled in Firebase Authentication.
  • Check that NEXT_PUBLIC_FIREBASE_* values are complete and have no trailing spaces.
  • For local testing, add localhost to Firebase authorized domains if redirects fail.

Port already in use (EADDRINUSE)

  • Another process may be using port 3000. Stop it or run npm run dev -- -p 3001.
  • On macOS/Linux: lsof -i :3000 to find the blocking process.

Dev server or build failures

  • Clear the Next.js cache: rm -rf .next then npm run dev.
  • Run npm run build locally to surface TypeScript or lint errors before deploying.
  • Check the terminal for missing MONGODB_URI or Firebase errors on API routes.

MongoDB connection issues

  • Confirm MONGODB_URI includes the database name and valid credentials.
  • For Atlas, allow your current IP in Network Access and verify the cluster is running.

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
RUSHILPATEL33
@RUSHILPATEL33
Aditya8369
@Aditya8369
pithva007
@pithva007
mrdeyroy
@mrdeyroy
Hrithik-ui753
@Hrithik-ui753
nivedha2025cse-gif
@nivedha2025cse-gif
Siddh2024
@Siddh2024
pranav-cholleti
@pranav-cholleti
sricharan-213
@sricharan-213
Pratyush-Panda-2006
@Pratyush-Panda-2006
Vaishnav-Hub9
@Vaishnav-Hub9
Sandeep6135
@Sandeep6135
leno23
@leno23
Srushti-Kamble14
@Srushti-Kamble14
DhruvalBhinsara1
@DhruvalBhinsara1
HarshaNaidu11
@HarshaNaidu11
akashgoudsidduluri
@akashgoudsidduluri
KRUSHAL2956
@KRUSHAL2956
basantnema31
@basantnema31
pragya0129
@pragya0129
ionfwsrijan
@ionfwsrijan
omnipotentchaos
@omnipotentchaos
codedbydollys10
@codedbydollys10
paripnj
@paripnj
AMAN194701
@AMAN194701
Divyanshu227
@Divyanshu227
harshbok69-bit
@harshbok69-bit
SuhridXSingh
@SuhridXSingh
skypank-coder
@skypank-coder
thevaibhavtyagi
@thevaibhavtyagi
Pratikshya32
@Pratikshya32
KGFCH2
@KGFCH2
NiranjanDoijode23
@NiranjanDoijode23
advikdivekar
@advikdivekar
yuvraj-k-singh
@yuvraj-k-singh
tamannaa-rath
@tamannaa-rath
vaishnavijha12
@vaishnavijha12
Chakshu-Bamotra
@Chakshu-Bamotra
atul-upadhyay-7
@atul-upadhyay-7
anshika1179
@anshika1179
suhaniiz
@suhaniiz
Shanidhya01
@Shanidhya01
nimkarprachi17
@nimkarprachi17
thakurakanksha288
@thakurakanksha288
vedant7007
@vedant7007
anshul23102
@anshul23102
SOHALIYAJAY
@SOHALIYAJAY
AdityaNarayanPadhi
@AdityaNarayanPadhi
hitdepani
@hitdepani
Nihal-Reddy-K
@Nihal-Reddy-K
Julliet-Mohanta
@Julliet-Mohanta
Vaghasiya-Jemit-kanaiyalal
@Vaghasiya-Jemit-kanaiyalal
varun29sharma
@varun29sharma
Ayushia5
@Ayushia5
4nshhh
@4nshhh
dhiraj-dev-19
@dhiraj-dev-19
prakshithamalla-art
@prakshithamalla-art
Meenbudha
@Meenbudha
kanishka-2007-tech
@kanishka-2007-tech
udaycodespace
@udaycodespace
dynamo-pentester
@dynamo-pentester
pericharlabindhumadhavi-data
@pericharlabindhumadhavi-data
zairahussain27
@zairahussain27
Vikrant0207
@Vikrant0207
tanishksinha
@tanishksinha
namrarafique93-del
@namrarafique93-del
ishitaajain22-tech
@ishitaajain22-tech
khushi897920-lang
@khushi897920-lang
anujsharma8d
@anujsharma8d
priyanshi-coder-2
@priyanshi-coder-2
Copilot
@Copilot
riddhimagupta2
@riddhimagupta2
DebasmitaBose0
@DebasmitaBose0
ash1shkumar
@ash1shkumar
dchokshi28
@dchokshi28
Kritika200520
@Kritika200520
shruti-codes-design
@shruti-codes-design
tanishrajh
@tanishrajh
Hiral-Barot
@Hiral-Barot
Rajal-ui
@Rajal-ui
Shrutiii01
@Shrutiii01
pracheyyy
@pracheyyy
shauryaparth1902-blip
@shauryaparth1902-blip
surya0904shankar
@surya0904shankar
adityack477
@adityack477
AdityaSekharDas
@AdityaSekharDas
Bhavex
@Bhavex
leonagoel
@leonagoel
Asifmd45
@Asifmd45
Nazia012
@Nazia012
ssuyashhhh
@ssuyashhhh
Sweksha-Kakkar
@Sweksha-Kakkar
Shayan-Bhowmik
@Shayan-Bhowmik
Tanish-Solanki
@Tanish-Solanki
vaishalig03
@vaishalig03
Prashantbhati7
@Prashantbhati7
NiravaM
@NiravaM
vansh-09
@vansh-09
pari-dubey1
@pari-dubey1
Abhii-afk
@Abhii-afk
aaradhyasinghai-ux
@aaradhyasinghai-ux
sujal-rana58
@sujal-rana58
PradeepTech-hub
@PradeepTech-hub
Sha-lini3
@Sha-lini3
shreyasingh260
@shreyasingh260
mxskaaan
@mxskaaan
Subham503
@Subham503
Ankitkr16
@Ankitkr16
dhruv-jani-0808
@dhruv-jani-0808
gowthamrdyy
@gowthamrdyy
Ketandora
@Ketandora
KhushiYadav-26
@KhushiYadav-26
Kokila-chandrakar
@Kokila-chandrakar
Meera2906
@Meera2906
Smrithi-krishna
@Smrithi-krishna
kannatinaveena
@kannatinaveena
Nirmai-06
@Nirmai-06
Shashank-8p
@Shashank-8p
saniya196
@saniya196
rajesh-puripanda
@rajesh-puripanda
Owais-Siddique-11
@Owais-Siddique-11
Shrutii-Rai
@Shrutii-Rai
Shrutika-Dahale
@Shrutika-Dahale
Tannie02
@Tannie02
Thejaswini-VS
@Thejaswini-VS
UTKARSHH20
@UTKARSHH20
PanditG4303
@PanditG4303
vikasverma101
@vikasverma101
Vinuthnainti
@Vinuthnainti
AnxhDarji
@AnxhDarji
karthick7204
@karthick7204
nisha-bugalia
@nisha-bugalia
nishitha011
@nishitha011
Sagun-Bajpai
@Sagun-Bajpai
sarthakshruti999-code
@sarthakshruti999-code
shambhavivartika06-cmyk
@shambhavivartika06-cmyk
suhanimaurya05
@suhanimaurya05
lover3123
@lover3123
workwithme67
@workwithme67
yashvi-3106
@yashvi-3106
pratyuxxhh
@pratyuxxhh
Achiever199
@Achiever199
adityayadav176
@adityayadav176
aishwary-vansh
@aishwary-vansh
Animesh-86
@Animesh-86
Anshika-Gupta9
@Anshika-Gupta9
ARCHITVARMA15
@ARCHITVARMA15
Arhanabdullah
@Arhanabdullah
Dippp10-ally
@Dippp10-ally
Hussain053
@Hussain053
krishsoni-hub
@krishsoni-hub
Lishhhh07
@Lishhhh07
LalithMadhav-CODING
@LalithMadhav-CODING
Bhavikapatel06
@Bhavikapatel06
PojashriJM
@PojashriJM
Pragya005
@Pragya005
pritesh-4
@pritesh-4
Chaudhary8587
@Chaudhary8587
Sanjay452656
@Sanjay452656
savniagrawal1701
@savniagrawal1701

/**

✨ README Improvement Notes

πŸ“Œ Formatting Enhancements Needed

  • Improve heading hierarchy for better readability
  • Ensure consistent spacing between sections
  • Use proper Markdown formatting for code blocks and lists
  • Align all installation and usage steps properly

πŸš€ Suggested Structure Upgrade

  • Introduction
  • Features
  • Tech Stack
  • Installation
  • Usage
  • Project Structure
  • Contribution Guidelines
  • License

πŸ› οΈ Documentation Improvements

  • Add badges (optional): build, license, contributors
  • Add screenshots for better UI understanding
  • Standardize code blocks for commands

🎯 Goal

Improve onboarding experience for new contributors and users by making README more structured, readable, and professional. */

GSSoC Attendance Passcode Masking Guidelines

  • Always mask attendance code states internally.

About

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

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 99.4%
  • Other 0.6%