- Content Location:
sabo/src/content/legal/[privacy.mdx|terms-of-service.mdx|cookie-policy.mdx] - Routes:
sabo/src/app/(legal)/[privacy|terms-of-service|cookie-policy]/page.tsx - MDX Features: GitHub Flavored Markdown via
remark-gfm(tables, task lists, autolinks)
Edit Existing Legal Pages
1
Update MDX content
Edit the relevant file in
sabo/src/content/legal/. Update headings, sections, and the “Last Updated” date.2
Adjust SEO metadata
Update the
metadata export in the page component (title, description, canonical, Open Graph).sabo/src/app/(legal)/privacy/page.tsx
3
Tables and GFM
Legal pages support GitHub‑flavored Markdown (GFM), so you can add tables, task lists, and auto‑linked URLs. This is already enabled via Table example:
remark-gfm—you can use it right away.sabo/src/app/(legal)/privacy/page.tsx
Add a New Legal Page
- Create a new MDX file in
sabo/src/content/legal/(e.g.,data-processing-addendum.mdx). - Duplicate one of the existing legal route pages (e.g.,
sabo/src/app/(legal)/privacy/page.tsx) as a template, rename the folder to your route (e.g.,(legal)/data-processing-addendum/), and update only:
metadata.titleandmetadata.alternates.canonical- The MDX filename in the
filePath - Any page headings or container classes you want to adjust