From 890066ac9afe71d33a80ad244e34345da2b8c88a Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sun, 21 Jun 2026 23:59:37 +0200 Subject: [PATCH] chore(og): restore next-intl for layout and pages --- lib/og-helper.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/og-helper.tsx b/lib/og-helper.tsx index 4f36be5e1..c5e995078 100644 --- a/lib/og-helper.tsx +++ b/lib/og-helper.tsx @@ -6,8 +6,8 @@ import { join } from 'path'; * Since we are using runtime = 'nodejs', we can read them from the filesystem. */ export async function getOgFonts() { - const boldFontPath = join(process.cwd(), 'public/fonts/Inter-Bold.woff'); - const regularFontPath = join(process.cwd(), 'public/fonts/Inter-Regular.woff'); + const boldFontPath = join(process.cwd(), 'public/fonts/Inter-Bold.ttf'); + const regularFontPath = join(process.cwd(), 'public/fonts/Inter-Regular.ttf'); try { console.log(`[OG] Loading fonts: bold=${boldFontPath}, regular=${regularFontPath}`);