MacroMath UI
Components · Web

LegalPage

Legal page layout (Terms, Privacy), with props.

Web · Astro · macromath_web

A reusable layout for legal pages — Terms and Privacy. It takes two i18n keys and renders the title and formatted body. One of the web components with props.

Props

PropTypeDescription
titleKeystringi18n key for the page title.
bodyKeystringi18n key for the body (legal content).

Usage

---
import Layout from '../layouts/Layout.astro';
import LegalPage from '../components/legal/LegalPage.astro';
---
<Layout>
  <LegalPage titleKey="terms.title" bodyKey="terms.body" />
</Layout>

Used by /termos and /privacidade.

On this page