From 9306cedbb76d8f241468642d03eec242f952dc77 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 20:09:16 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b1687af..8f05840 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Libre_Baskerville } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -41,13 +43,13 @@ export const metadata: Metadata = { }, }; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", + +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], - weight: ["400", "700"], }); -const inter = Inter({ - variable: "--font-inter", +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -59,7 +61,7 @@ export default function RootLayout({ return ( - + {children}