// Inner page components — Features, Pricing, About, Blog, Demo const PageHero = ({ eyebrow, title, lede }) => (
{eyebrow}

); // ============ FEATURES PAGE ============ const FeaturesPage = () => { const groups = [ { eyebrow: 'For families', title: 'Built for parents.', desc: 'Everything parents need to feel informed and involved — from daily classroom moments to secure fee payments.', items: [ { icon: 'announce', title: 'One inbox, zero missed updates', desc: 'Every announcement, sorted by class and child.', color: 'coral' }, { icon: 'gallery', title: 'Real-time activity gallery', desc: 'Classroom moments shared safely with just the right families.', color: 'coral' }, { icon: 'fee', title: 'One-tap fee payments', desc: 'Secure online payments with instant digital receipts.', color: 'mustard' }, { icon: 'mood', title: 'Mood tracking', desc: 'Track your child’s mood and emotional well-being with simple daily check-ins.', color: 'teal' }, { icon: 'bell', title: 'Smart reminders', desc: 'Parents set their own nudges for homework and fees.', color: 'mustard' }, { icon: 'complaint', title: 'Raise a concern', desc: 'A respectful, direct channel to school leadership.', color: 'cream' }, { icon: 'notify', title: 'Multi-child support', desc: 'Parents with more than one child manage all from a single account — one app, one family.', color: 'teal' }, ] }, { eyebrow: 'For teachers', title: 'Built for teaching.', desc: 'Less admin, more teaching time. Tools designed around how teachers actually work, not how IT imagines they do.', items: [ { icon: 'homework', title: 'Homework in seconds', desc: 'Post once, reach every parent instantly, with attachments.', color: 'coral' }, { icon: 'attend', title: 'One-tap attendance', desc: 'Mark the register and parents are notified automatically.', color: 'teal' }, { icon: 'mood', title: 'Daily Mood Update', desc: 'Teacher-parent conversations with full history, always.', color: 'mustard' }, { icon: 'timetable', title: 'Weekly timetable', desc: 'Your classes, subjects and rooms in your pocket.', color: 'cream' }, { icon: 'gallery', title: 'Photo video uploads', desc: 'Capture a moment, share it with families — that simple.', color: 'coral' }, { icon: 'reports', title: 'Report cards digitally', desc: 'Upload reports in a single tap that parents can access in realtime.', color: 'teal' }, ] }, { eyebrow: 'For school leaders', title: 'Built for running a school.', desc: 'One portal, total operational visibility. Fees, enrolment, engagement, concerns — all at a glance.', items: [ { icon: 'dash', title: 'Admin dashboard', desc: 'Fees, enrolment and engagement in one operational view.', color: 'mustard' }, { icon: 'fee', title: 'Fee tracking & reminders', desc: 'See who\u2019s paid, who hasn\u2019t, and auto-nudge gently.', color: 'teal' }, { icon: 'announce', title: 'Controlled announcements', desc: 'Broadcast to whole school, a year, or a single class.', color: 'coral' }, { icon: 'calendar', title: 'Annual calendar', desc: 'Term dates, holidays and PTMs — single source of truth.', color: 'cream' }, { icon: 'events', title: 'Events', desc: 'RSVPs and payment in one flow.', color: 'mustard' }, { icon: 'complaint', title: 'Concern management', desc: 'Track, assign and resolve parent concerns with full audit trail.', color: 'teal' }, ] }, { eyebrow: 'Smart extras', soon: true, title: 'Built for the future.', desc: 'AI assistance and thoughtful automation that keep things calm, never noisy.', items: [ { icon: 'ai', title: '24/7 AI assistant', desc: 'Answers routine parent queries, trained on your school\u2019s content.', color: 'cream' }, { icon: 'chat', title: 'Smart escalation', desc: 'AI handles easy questions; complex ones go to the right staff.', color: 'coral' }, { icon: 'voice', title: 'Voice Assistant', desc: 'Teachers record a quick voice note , it auto-transcribes into a parent-friendly remark.', color: 'mustard' }, { icon: 'class', title: 'Online Classes', desc: 'Live and recorded classes inside School Connect, parents and students stay in one ecosystem.', color: 'teal' }, { icon: 'circles', title: 'Parent Circles', desc: 'A quieter, kinder space for parents to connect, class-by-class, interest-by-interest, drama-free.', color: 'coral' }, { icon: 'yearbook', title: 'Students\u2019 Yearbook', desc: 'The whole year, lovingly curated. Every smile, every milestone, pulled together into a memory book.', color: 'cream' }, // { icon: 'notify', title: 'Quiet hours DND', desc: 'Per-family notification rules. Never noisy, always respectful.', color: 'mustard' }, // { icon: 'dash', title: 'Multi-campus support', desc: 'Branches, shifts, sections — one portal, one bill.', color: 'teal' }, ] }, ]; return ( <>