Files
wehub-resource-sync d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

57 lines
2.8 KiB
TypeScript

/**
* Prose-layout spacing and type - the single source of truth for every gutter,
* gap, reading-column width, and text token used across the legal pages
* (Terms, Privacy) and the Changelog. Modeled on the platform page's
* `PLATFORM_SPACING`: the padding fortress lives here, so a reviewer changes
* spacing in exactly one place and Terms can never drift from Privacy.
*
* No prose component hard-codes a spacing value inline and no consumer page can
* reach these knobs - a page passes only content (strings + `ReactNode`), and
* the layout decides where and with how much space.
*
* All values are Tailwind class fragments (not raw numbers) so they compose
* directly into `className` strings and stay legible.
*/
export const PROSE_SPACING = {
/**
* The one horizontal gutter, matching the navbar and footer so content starts
* on the wordmark's vertical line at every width.
*/
gutter: 'px-20 max-lg:px-8 max-sm:px-5',
/** Outer content cap, matching navbar/footer (`mx-auto w-full max-w-[1460px]`). */
outerCap: 'mx-auto w-full max-w-[1460px]',
/** Top padding that clears the sticky navbar, matching the platform hero. */
heroTopPadding: 'pt-[112px] max-sm:pt-20',
/** Vertical rhythm of the content column - hero → body and section → section. */
bodyRhythm: 'gap-16 max-sm:gap-12',
/** Hero header sub-stack (title → meta → lead → actions). */
heroStack: 'gap-5',
/** Section sub-stack (heading → block group). */
sectionStack: 'gap-4',
/** Gap between blocks (paragraphs, lists, subheadings, callouts) within a group. */
blockStack: 'gap-4',
/** List-item vertical spacing. */
listStack: 'space-y-2',
/** List left indent for the disc marker. */
listIndent: 'pl-6',
} as const
/**
* Prose type tokens - the single source of truth for every heading size, body
* color, list, callout, and inline-link treatment. Centralized alongside the
* spacing fortress so chrome is described once and never re-derived per page.
* Uses the platform light tokens exclusively (no hex, no `--landing-*`).
*/
export const PROSE_TYPE = {
h1: 'text-balance text-[40px] text-[var(--text-primary)] leading-[1.1] max-sm:text-[32px]',
meta: 'text-[14px] text-[var(--text-muted)]',
lead: 'max-w-[640px] text-[20px] text-[var(--text-body)] leading-[1.5] max-sm:text-[17px]',
h2: 'text-[24px] text-[var(--text-primary)] leading-[1.25] max-sm:text-[21px]',
h3: 'text-[17px] text-[var(--text-primary)] leading-[1.35]',
body: 'text-[15px] text-[var(--text-body)] leading-[1.65]',
list: 'text-[15px] text-[var(--text-body)] leading-[1.6] marker:text-[var(--text-muted)]',
callout:
'rounded-lg border border-[var(--border)] bg-[var(--surface-2)] px-4 py-3 text-[14px] text-[var(--text-body)] leading-[1.6]',
link: 'text-[var(--text-primary)] underline underline-offset-2 transition-colors hover:text-[var(--text-body)]',
} as const