import { Link } from 'react-router-dom'; import { PublicLayout } from '@/components/public/PublicLayout'; const DOCS = [ { to: '/legal/terms', title: 'Terms of Service', blurb: 'The agreement that governs your use of eLegal Software — accounts, plans, content ownership, disputes.', }, { to: '/legal/privacy', title: 'Privacy Policy', blurb: 'What we collect, why, where it lives, who we share it with, and the rights you have over it.', }, { to: '/legal/cookies', title: 'Cookie Policy', blurb: 'The (few, essential-only) cookies we set and how to control them.', }, { to: '/legal/acceptable-use', title: 'Acceptable Use Policy', blurb: 'What you may not do on the platform — security, abuse, and fair-use rules.', }, { to: '/legal/refunds', title: 'Billing & Refund Policy', blurb: 'How subscriptions, renewals, cancellations, refunds, and failed payments work.', }, { to: '/legal/disclaimer', title: 'Legal Disclaimer', blurb: 'eLegal Software is software, not a law firm — no legal advice, no attorney–client relationship.', }, { to: '/legal/dmca', title: 'DMCA & Copyright Policy', blurb: 'How to report copyright infringement and how takedowns and counter-notices work.', }, { to: '/legal/dpa', title: 'Data Processing Addendum', blurb: 'How we process your clients’ data on your behalf — security measures, subprocessors, breach notice.', }, ]; export default function LegalIndexPage() { return (

Legal

Legal center

Everything that governs your relationship with eLegal Software, written in plain English. Questions about any of it:{' '} legal@elegalsoftware.com .

{DOCS.map((d) => (

{d.title}

{d.blurb}

))}
); }