From b545b76ef10198ca1a5f254a0ed8d531545fc61a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 17 May 2026 17:02:14 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14e51bb..9297012 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,21 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { DM_Sans } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", + + +export const metadata: Metadata = { title: 'Ugarte Landscapes & Irrigation Repair | Expert Lawn Care', description: 'Transform your outdoor space with Ugarte Landscapes & Irrigation Repair. Professional landscaping, lawn maintenance, and expert irrigation system repairs.' }; + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], }); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -export const metadata: Metadata = { title: 'Ugarte Landscapes & Irrigation Repair | Expert Lawn Care', description: 'Transform your outdoor space with Ugarte Landscapes & Irrigation Repair. Professional landscaping, lawn maintenance, and expert irrigation system repairs.' }; - export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +29,7 @@ export default function RootLayout({ return ( - + {children}