From 3a6adaf678506ad14af19efbeaf5d1d41a64217a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 18:30:19 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8e1298c..24fff4c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { DM_Sans } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -20,13 +21,13 @@ export const metadata: Metadata = { }, }; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", subsets: ["latin"], + weight: ["400", "700"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export default function RootLayout({ @@ -37,7 +38,7 @@ export default function RootLayout({ return ( - + {children}