From d094189f1d494fb48b3bd1b43acdc6ee25afeb39 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 23:45:36 +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 bfdd1e4..801d77b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,6 +5,7 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Poppins } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -13,10 +14,15 @@ export const metadata: Metadata = { description: "Generated by create next app", }; -const poppins = Poppins({ - variable: "--font-poppins", + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -27,7 +33,7 @@ export default function RootLayout({ return ( - + {children}