TEACHING AND LEARNING MATERIALS
# History Learning Hub Tanzania 🇹🇿
A modern, production-ready web application for browsing, searching, and downloading History teaching and learning materials aligned with the Tanzanian Form I-VI curriculum.
## Features
✨ **For Students & Teachers**
- Browse and search history materials without login
- Download PDF, DOCX, PPTX, and other formats
- Preview materials directly in browser
- Bookmark favorite resources
- Mobile-friendly responsive design
- Fast loading with optimized images
📚 **Tanzanian Curriculum Aligned**
- Form I-VI history topics
- Ancient History, Medieval History, Modern History
- African History, Tanzanian History
- Colonial Period, Independence Movements
- World Wars, Cold War
🔐 **Administrator Dashboard**
- Secure upload system (admin only)
- Edit and delete materials
- View analytics and statistics
- Manage categories and users
- Download tracking
⚡ **Performance & Security**
- Lighthouse Score 95+
- SEO optimized
- Role-based access control
- Secure authentication
- Protected file uploads (100MB max, virus scanned)
- HTTPS, CSRF, XSS, SQL injection protection
## Technology Stack
### Frontend
- **Next.js 15+** - React framework
- **TypeScript** - Type safety
- **Tailwind CSS** - Styling
- **Framer Motion** - Animations
- **React Query** - Data fetching
### Backend
- **Supabase** - BaaS platform
- **PostgreSQL** - Database
- **Supabase Auth** - Authentication
- **Supabase Storage** - File storage
### Deployment
- **Netlify** or **Vercel** - Hosting
- **CDN** - Global content delivery
## Project Structure
```
history-learning-hub-tanzania/
├── public/
│ ├── images/
│ ├── icons/
│ ├── favicon.ico
│ ├── robots.txt
│ └── sitemap.xml
├── src/
│ ├── app/
│ │ ├── layout.tsx
│ │ ├── page.tsx
│ │ ├── globals.css
│ │ ├── (auth)/
│ │ ├── (dashboard)/
│ │ ├── (public)/
│ │ └── api/
│ ├── components/
│ ├── lib/
│ ├── types/
│ ├── hooks/
│ ├── utils/
│ ├── middleware.ts
│ ├── styles/
│ └── c …