From 6aaa3fdc33eb0e4dfe6e8a79b3bdad7bde33ed52 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 22 May 2026 04:25:06 +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 6532591..fac0fd2 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 { DM_Sans } from "next/font/google"; 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", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", 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}