From f439fa2fd7883499ed6b0e45d6c0ef87dea4935f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 01:30:05 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1850235..8814590 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,17 +7,19 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Open_Sans } from "next/font/google"; +import { Montserrat } from "next/font/google"; export const metadata: Metadata = { title: 'Professional HVAC Services | Heating, Cooling & Air Quality', description: 'Expert HVAC installation, repair, and maintenance services. Keep your home comfortable year-round with our reliable heating and cooling solutions.' }; -const inter = Inter({ - variable: "--font-inter", + +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -29,7 +31,7 @@ export default function RootLayout({ return ( - + {children}