// LegalPages.jsx — Terms of Service + Privacy Policy. Shell sets window.LEGAL_PAGE. const LegalDoc = ({ eyebrow, title, updated, intro, sections }) => ( <>
{eyebrow}

{title}

Last updated {updated}

{intro}

{sections.map((s, i) => (

{String(i + 1).padStart(2, '0')} {s.h}

{s.body.map((b, j) =>

{b}

)}
))}
Questions about this document? Write to info@greysurface.com. This page is provided for illustration on a demonstration site and is not legal advice.
); const TermsPage = () => ( ); const PrivacyPage = () => ( ); const LegalApp = () => { const which = window.LEGAL_PAGE; const Page = which === 'privacy' ? PrivacyPage : TermsPage; return (
); }; Object.assign(window, { LegalDoc, TermsPage, PrivacyPage, LegalApp });