import * as React from "react"; import Link from "next/link"; import { Container, Eyebrow } from "./section"; /** Shared layout for the legal pages: sticky in-page nav on wide screens, readable prose. */ export function LegalPage({ eyebrow, title, updated, intro, sections, }: { eyebrow: string; title: string; updated: string; intro: React.ReactNode; sections: { id: string; title: string; body: React.ReactNode }[]; }) { return (
{eyebrow}

{title}

Last updated {updated}

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

{String(i + 1).padStart(2, "0")} {s.title}

{s.body}
))}

Questions? Write to{" "} contact@spboucher.ai . See also our Privacy Policy and{" "} Terms of Service .

); }