From 91f2f87929a69123f262fc7c247cc713fcef82a8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 14:03:34 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1038bc7..b514cf3 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,7 +21,16 @@ 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"], +}); export default function RootLayout({ children, @@ -30,7 +40,7 @@ export default function RootLayout({ return ( - + {children}