From a2573c6a540c31ec41e6077a18ba4d9b703e193d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 06:43:20 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6aebe45..525d993 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,6 +10,7 @@ import { Inter_Tight } from "next/font/google"; import { Open_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Public_Sans } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -47,9 +48,11 @@ export const metadata: Metadata = { -const publicSans = Public_Sans({ - variable: "--font-public-sans", + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", subsets: ["latin"], + weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", @@ -64,7 +67,7 @@ export default function RootLayout({ return ( - + {children}