A fully responsive, privacy-focused attendance tracker for college students — no login required, works offline, and stores your data locally using IndexedDB. Designed for mobile-first use, with planned AI integration to simplify subject entry and tracking.
- ✅ Mark attendance for each subject with custom categories:
- Present
- Absent
- Excused (e.g. for events)
- Sick Leave
- 📅 Flexible tracking:
- Total strict vs relaxed attendance
- Custom thresholds and reminders
- 📈 Attendance dashboard with subject-wise and overall stats
- 🌗 Light/Dark mode toggle with theme persistence
- 📦 Offline-first via IndexedDB + Dexie.js
- ⚙️ Settings page to customize the app
- 🔐 No login required — works per browser
We're in the process of integrating AI-based timetable extraction using Google Gemini AI:
- 🖼️ Upload an image of your timetable (screenshot/photo)
- 🤖 AI will extract subjects and auto-fill them into your tracker
-
🔁 Future plans: Auto-increment attendance using schedule
⚠️ Currently using local Gemini API integration — subject extraction from image is under development and may return raw text.
-
- React + Vite
- Tailwind CSS v4 + DaisyUI
- Dexie.js for IndexedDB
- PWA-ready structure
- Google Gemini API (for OCR + AI processing)
src/
├── components/
│ ├── Dashboard/
│ ├── Attendance/
│ └── Settings/
├── database/
│ └── db.js
├── pages/
│ ├── DashboardPage.jsx
│ ├── AttendancePage.jsx
│ ├── Home.jsx
│ └── SettingsPage.jsx
├── utils/
│ ├── reminder.js
│ └── geminiApi.js (not implemented yet)
├── App.jsx
├── index.css
└── main.jsx
- Clone the repo:
git clone https://github.com/yourusername/smart-attendance-tracker.git cd smart-attendance-tracker - Install dependencies:
npm install
- Two ways to approach this,
- Run without PWA Service Worker
npm run dev
- Run with PWA Service Worker
npm install -g serve
npm run build
npx serve -s dist
- Run without PWA Service Worker
Try out the app instantly! Click the link below to open it in your browser — you can even install it as a PWA for a full app-like experience:
Works offline, mobile-friendly, and ready to track your classes right away!
- Attendance dashboard
- Manual subject entry
- Light/Dark theme support
- ✅ AI-powered timetable upload (in progress)
- 🔁 Auto-increment based on schedule (uses different method for now)
- 🧪 Subject editing with preview
- 🔔 Notifications/reminders after college end time
- 📱 Full PWA support
Coming soon! Once AI features are stabilized, we'll open the repo for community contributions.
MIT License
Let me know if you'd like a version with your GitHub repo URL added, or if you want it split in