From e99a518af917084ae59d759160d84eb949e7f8b9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 07:13:43 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 086ae3d..b6d87ab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,16 +7,21 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Inter_Tight } from "next/font/google"; +import { Open_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'Professional Landscaping & Garden Design Services | GreenScape', description: 'Transform your outdoor space with GreenScape. We provide expert landscaping, lawn maintenance, and custom garden design to elevate your home\'s curb appeal.' }; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -27,7 +32,7 @@ export default function RootLayout({ return ( - + {children}