'use client'; import { Box, Typography, Grid, Card, CardContent, Button } from '@mui/material'; import { Add, ChildCare } from '@mui/icons-material'; import { useRouter } from 'next/navigation'; import { AppShell } from '@/components/layouts/AppShell/AppShell'; import { ProtectedRoute } from '@/components/common/ProtectedRoute'; export default function ChildrenPage() { const router = useRouter(); return ( Children Manage your family's children profiles No children added yet Add your first child to start tracking their activities ); }