import React, { useState } from 'react'; import { Library as LibraryIcon, Lock, FileText, CheckCircle2, Bell, ShieldAlert, BookOpen, GraduationCap, Building2 } from 'lucide-react'; import { useLanguage } from '../contexts/LanguageContext'; import { Button } from '../components/ui/Button'; const Library: React.FC = () => { const { t } = useLanguage(); const [notified, setNotified] = useState(false); const handleNotify = () => { setNotified(true); }; const timeline = [ { title: "System Architecture", status: "completed", date: "Ready" }, { title: "CDC Content Request", status: "current", date: "Pending Submission" }, { title: "Government Approval", status: "waiting", date: "TBD" }, { title: "Public Deployment", status: "waiting", date: "Q2 2025" } ]; return (
{/* Header */}

{t("Digital Library", "Digital Library")}

{t("National Curriculum & Resources", "National Curriculum & Resources")}

Pending Approval
{/* Left Column: Status Card */}

Content Locked

CDC Compliance

To ensure educational integrity, we are waiting for official API access from the Curriculum Development Centre (CDC). This ensures all textbooks and materials are up-to-date with the National Syllabus.

{timeline.map((step, i) => (
{step.status === 'completed' ? :
}

{step.title}

{step.date}

))}
{notified ? (
You're on the list
) : ( )}
{/* Right Column: Preview Placeholder */}
Planned Features

The Future of Learning

Once approved, Rudraksha will host the complete repository of Grade 1-12 textbooks, interactive video lessons, and AI-powered doubt resolution tailored to the Nepali curriculum.

500+

Textbooks

AI

Tutor Support

Model Question Sets

Locked

Exam Alerts

Locked

); }; export default Library;