From 9e4fbe287a6c209f416c271793e6bba96f679364 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 21:53:25 +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 cc29ef9..3734b07 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 { Public_Sans } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -21,13 +22,13 @@ export const metadata: Metadata = { }, }; -const publicSans = Public_Sans({ - variable: "--font-public-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({ @@ -38,7 +39,7 @@ export default function RootLayout({ return ( - + {children}