From 1bc0a7e9c1853ff9c2639d035c3e1319169b0a5d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 00:52:28 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index af02cd7..0f92c1e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -20,12 +21,14 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ - variable: "--font-manrope", + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", subsets: ["latin"], + weight: ["400", "700"], }); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -37,7 +40,7 @@ export default function RootLayout({ return ( - + {children}