From 8c862f9b57fdab338725e1318940e8213017c0a0 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:50:40 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7a7f6e2..05711b0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; @@ -14,8 +15,15 @@ export const metadata: Metadata = { description: 'Experience artisan specialty coffee at BrewHaven. Ethically sourced, freshly roasted blends. Visit our café or subscribe for home delivery.', }; -const nunito = Nunito({ - variable: "--font-nunito", 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({ @@ -26,7 +34,7 @@ export default function RootLayout({ return ( - + {children}