From a349f473f68146f93fa8ee3542aa1590684d4e05 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 03:54:16 +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 e423627..cb458c6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Poppins } from "next/font/google"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -25,12 +26,14 @@ export const metadata: Metadata = { -const manrope = Manrope({ - variable: "--font-manrope", + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", subsets: ["latin"], + weight: ["400", "700"], }); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -42,7 +45,7 @@ export default function RootLayout({ return ( - + {children}