From 8720bd3b3bf1ebf6c01378132bf71535074f1738 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 08:06:39 +0000 Subject: [PATCH 1/5] 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 2a6187c..ed49987 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: 'Professional Landscaping & Garden Design Services | GreenScape', description: 'Transform your outdoor space with expert landscaping, lawn care, and custom garden design. Reliable, high-quality services to bring your vision to life.' }; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); - -export const metadata: Metadata = { title: 'Professional Landscaping & Garden Design Services | GreenScape', description: 'Transform your outdoor space with expert landscaping, lawn care, and custom garden design. Reliable, high-quality services to bring your vision to life.' }; +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}