export const KIDS = [ { id: "abdulla", name: "Abdulla", grade: "Grade 2", emoji: "🦁", color: "#1D9E75", light: "#E1F5EE", dark: "#0F6E56", }, { id: "salama", name: "Salama", grade: "KG 1", emoji: "🦋", color: "#D4537E", light: "#FBEAF0", dark: "#993556", }, ]; export const SUBJECTS = { abdulla: ["Math", "English", "Arabic", "Science", "Islamic Studies", "Art", "PE"], salama: ["Phonics", "Math", "Arabic", "Islamic Studies", "Art", "PE", "Story Time"], }; export const STATUSES = [ { id: "new", label: "New", bg: "#E6F1FB", text: "#185FA5", dot: "#378ADD" }, { id: "inprogress", label: "In Progress", bg: "#FAEEDA", text: "#854F0B", dot: "#EF9F27" }, { id: "completed", label: "Done ✓", bg: "#EAF3DE", text: "#3B6D11", dot: "#639922" }, ]; export const SOURCES = [ "Teacher Portal", "Class WhatsApp", "Notebook", "Email", "Verbal (Teacher)", "School App", "Printed Sheet", ]; export const SUBJECT_ICONS = { Math: "🔢", English: "📖", Phonics: "📖", Arabic: "✍️", Science: "🔬", Art: "🎨", PE: "⚽", "Islamic Studies": "🌙", "Story Time": "📚", }; export const DAYS = ["Mon", "Tue", "Wed", "Thu", "Fri"]; export const SAMPLE_TASKS = { abdulla: [ { id: 1, subject: "Math", title: "Addition worksheet p.12", status: "inprogress", source: "Notebook", type: "homework", }, { id: 2, subject: "English", title: "Read pages 10–15 and answer questions", status: "new", source: "Teacher Portal", type: "homework", }, { id: 3, subject: "Science", title: "Solar System Poster", status: "new", source: "Class WhatsApp", type: "project", }, ], salama: [ { id: 1, subject: "Phonics", title: "Letter B practice sheet", status: "completed", source: "Notebook", type: "homework", }, { id: 2, subject: "Math", title: "Count to 20 worksheet", status: "new", source: "School App", type: "homework", }, { id: 3, subject: "Art", title: "My Family Drawing", status: "inprogress", source: "Verbal (Teacher)", type: "project", }, ], };