A comprehensive Progressive Web App for Kenya-focused education
# Elimu Hub - Community-Powered Learning Platform
> **Empowering Education in Kenya through Technology** π°πͺ
> Supporting UN SDG 4: Quality Education for All
## π― Overview
Elimu Hub is a Progressive Web App (PWA) designed to democratize education access in Kenya through:
- **Peer Learning**: Study circles, mentorship, and teaching points system
- **Adaptive AI Tutor**: Personalized learning paths and instant Q&A support
- **Offline-First Design**: Works without internet via service workers and IndexedDB
- **USSD Integration**: Parents can check progress via `*789*12349#` on any phone
- **Practical Skills**: Financial literacy, digital skills, entrepreneurship, and agri-tech
## ποΈ Architecture
```
βββββββββββββββββββ ββββββββββββββββββββ βββββββββββββββββββ
β Frontend β β Supabase β β Africa's β
β (Vite/React) βββββΊβ (Database) β β Talking USSD β
β + PWA Cache β β + Edge Funcs β β β
βββββββββββββββββββ ββββββββββββββββββββ βββββββββββββββββββ
β² β² β²
β β β
βΌ βΌ βΌ
βββββββββββββββββββ ββββββββββββββββββββ βββββββββββββββββββ
β Service β β Real-time β β AI Client β
β Worker β β Subscriptions β β (Mock/Real) β
β (Offline) β β (Chat/Sync) β β β
βββββββββββββββββββ ββββββββββββββββββββ βββββββββββββββββββ
```
## π Quick Start
### Prerequisites
- Node.js 18+
- Supabase CLI
- Git
### Local Development
1. **Clone and Install**
```bash
git clone
cd SomaNow
cd web && npm install
```
2. **Set up Supabase**
```bash
npx supabase init
npx supabase start
npx supabase db reset
```
3. **Configure Environment**
```bash
cp .env.example .env.local
# Fill in your Supabase project URL and anon key
```
4. **Start Development**
```bash
# Terminal 1: Frontend
cd web && npm r β¦