'use client';
import { Box, Container, Typography, Paper, Grid, Card, CardContent, CardActionArea } from '@mui/material';
import Link from 'next/link';
import { Gavel, Security, Description, Cookie } 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 LegalPage() {
const router = useRouter();
const legalDocuments = [
{
title: 'Privacy Policy',
description: 'Learn how we collect, use, and protect your personal information and your child\'s data.',
icon: ,
path: '/legal/privacy',
highlights: ['COPPA Compliance', 'GDPR Rights', 'Data Security', 'Children\'s Privacy'],
},
{
title: 'Terms of Service',
description: 'Understand the terms and conditions governing your use of ParentFlow.',
icon: ,
path: '/legal/terms',
highlights: ['Acceptable Use', 'Medical Disclaimer', 'User Accounts', 'Subscriptions'],
},
{
title: 'End User License Agreement (EULA)',
description: 'Review the license agreement for using the ParentFlow software.',
icon: ,
path: '/legal/eula',
highlights: ['License Grant', 'AI Features', 'Intellectual Property', 'Warranties'],
},
{
title: 'Cookie Policy',
description: 'Find out how we use cookies and similar tracking technologies.',
icon: ,
path: '/legal/cookies',
highlights: ['Cookie Types', 'Third-Party Services', 'Your Choices', 'Analytics'],
},
];
return (
Legal & Privacy
Welcome to our Legal Center. Here you'll find all the legal documents and policies governing your use of ParentFlow.
We're committed to transparency and protecting your privacy.
Last Updated: October 4, 2025
{legalDocuments.map((doc) => (
router.push(doc.path)}
sx={{ height: '100%', p: 3 }}
>
{doc.icon}
{doc.title}
{doc.description}
Key Topics:
{doc.highlights.map((highlight) => (
{highlight}
))}
))}
Questions or Concerns?
If you have any questions about our legal policies or how we handle your data, please don't hesitate to contact us:
Email: hello@parentflow.com
Privacy: hello@parentflow.com
Data Protection Officer: hello@parentflow.com
);
}