From 9ea86adb771a9f3ebbeeb42fc7039232e707d930 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 15:09:52 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5c6281e..886062b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { DM_Sans } from "next/font/google"; import { Figtree } from "next/font/google"; +import { Manrope } from "next/font/google"; @@ -43,8 +44,13 @@ export const metadata: Metadata = { }; -const figtree = Figtree({ - variable: "--font-figtree", + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -56,7 +62,7 @@ export default function RootLayout({ return ( - + {children}