chore: self-host fonts and log ops fixes

This commit is contained in:
colinislit
2025-11-23 09:55:46 +01:00
parent 9dac485e8e
commit 123ee14461
2 changed files with 63 additions and 12 deletions

View File

@@ -1,30 +1,69 @@
import type { Metadata } from "next";
import { Crimson_Text, Inter, JetBrains_Mono } from "next/font/google";
import localFont from "next/font/local";
import "./globals.css";
// Serif font voor long-form content (manifesto)
const crimsonText = Crimson_Text({
// Serif font voor long-form content (manifesto) - lokaal geladen om build zonder netwerk te laten slagen
const crimsonText = localFont({
variable: "--font-serif",
subsets: ["latin"],
weight: ["400", "600"],
display: "swap",
preload: true,
src: [
{
path: "../docs/fonts/Lora-Regular.woff2",
weight: "400",
style: "normal",
},
{
path: "../docs/fonts/Lora-Italic.woff2",
weight: "400",
style: "italic",
},
{
path: "../docs/fonts/Lora-SemiBold.woff2",
weight: "600",
style: "normal",
},
],
});
// Sans-serif font voor UI, nav, metadata
const inter = Inter({
const inter = localFont({
variable: "--font-sans",
subsets: ["latin"],
display: "swap",
preload: true,
src: [
{
path: "../docs/fonts/source-sans-3-v18-latin-regular.woff2",
weight: "400",
style: "normal",
},
{
path: "../docs/fonts/source-sans-3-v18-latin-600.woff2",
weight: "600",
style: "normal",
},
{
path: "../docs/fonts/source-sans-3-v18-latin-600italic.woff2",
weight: "600",
style: "italic",
},
],
});
// Mono font voor tech details, numbers
const jetBrainsMono = JetBrains_Mono({
const jetBrainsMono = localFont({
variable: "--font-mono",
subsets: ["latin"],
display: "swap",
preload: true,
src: [
{
path: "../docs/fonts/source-code-pro-v30-latin-regular.woff2",
weight: "400",
style: "normal",
},
{
path: "../docs/fonts/source-code-pro-v30-latin-600.woff2",
weight: "600",
style: "normal",
},
],
});
export const metadata: Metadata = {

12
docs/release/ops-log.md Normal file
View File

@@ -0,0 +1,12 @@
## 2025-11-23 — Clients → Patients datafix + seeds (Colin)
- Clients die na de hoofdrelease nog in `clients` stonden opgespoord met `clients LEFT JOIN patients` sanity check (Supabase SQL editor)
- Idempotente blok uit `20241121_migrate_legacy_to_fhir.sql` opnieuw gedraaid zodat alle ontbrekende clients nu als patients bestaan
- Verification DO-block uitgevoerd zodat de teller op 0 missing clients staat en de migratie gelogd
- Default organisatie opnieuw gezaaid met `pnpm tsx scripts/seed-organization.ts` (env geladen via `.env.local`)
## 2026-02-XX — Screening Intake Fase 1 & 2 (Colin)
- TipTap placeholder hints toegevoegd + styled zodat behandeladvies-sectie guidance toont
- Metadata-sectie, afrondingsworkflow en behandelaarselecties bouwden de behandeladvies-tab af
- Intake-tabs (contact, kindcheck, risico, anamnese, onderzoeken/ROM, diagnose, behandeladvies) compleet met Supabase CRUD
- Status dropdowns gecorrigeerd (bezig/afgerond) en dokument flows afgerond
- Supabase migratiestappen wachten nog op einde maintenance (fase 0 runbook ligt klaar)