From 6fe04bd050829fb060a671541dd789a703edb4d0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 18:30:55 +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 7978b18..f0661d4 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 { Open_Sans } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -41,14 +42,16 @@ export const metadata: Metadata = { }, }; + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); export default function RootLayout({ children, @@ -58,7 +61,7 @@ export default function RootLayout({ return ( - + {children}