From e87c3895424467ef263675a98d8cc3df91dcd988 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 21:24:24 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d370830..3ab1c03 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,6 +5,7 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Libre_Baskerville } from "next/font/google"; @@ -13,8 +14,15 @@ export const metadata: Metadata = { description: 'Fast, professional tree removal, trimming, and stump grinding at fair prices. 4.9★ rated. Free estimates. Call (505) 402-3513 today.', }; + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], + variable: "--font-inter", + subsets: ["latin"], }); export default function RootLayout({ @@ -25,7 +33,7 @@ export default function RootLayout({ return ( - + {children}