diff --git a/lib/og-helper.tsx b/lib/og-helper.tsx index 42222e2a2..fcd5ad6fa 100644 --- a/lib/og-helper.tsx +++ b/lib/og-helper.tsx @@ -7,8 +7,8 @@ import { ImageResponse } from 'next/og'; * 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}`);