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}`);