From a1a766caa648cfd4de5806d5d6b2bc7f93f44103 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 10 May 2026 18:35:56 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3ec3ed9..6532591 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,19 +6,20 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Open_Sans } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); + + +export const metadata: Metadata = { title: 'Expert HVAC Services | Reliable Heating & Cooling Solutions', description: 'Keep your home comfortable year-round with our professional HVAC installation, repair, and maintenance services. Fast, reliable, and energy-efficient solutions.' }; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); - -export const metadata: Metadata = { title: 'Expert HVAC Services | Reliable Heating & Cooling Solutions', description: 'Keep your home comfortable year-round with our professional HVAC installation, repair, and maintenance services. Fast, reliable, and energy-efficient solutions.' }; +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -28,9 +29,7 @@ export default function RootLayout({ return ( - + {children}