From 70f3ae817cd44efdda65323f773061bea0215778 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 10:18:48 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b9ecc07..4bc760d 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 { Lato } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -19,10 +20,15 @@ export const metadata: Metadata = { }, }; -const lato = Lato({ - variable: "--font-lato", + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], }); export default function RootLayout({ @@ -33,7 +39,7 @@ export default function RootLayout({ return ( - + {children}