From 8f1cfac169c27c2bb0f9c0e99a8b615f8cf52ef5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:13:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8a2ae4b..8cfe195 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,14 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import "./styles/variables.css"; -import "./styles/base.css"; +import { Inter } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Garcia's Project - Landscape & Hardscape Construction", description: "Professional landscaping and hardscape construction services in Chicago suburbs"}; + title: "Garcia's Project - Landscape & Hardscape Construction", description: "Professional landscaping and hardscape construction services in Addison, IL and surrounding areas."}; export default function RootLayout({ children, @@ -17,11 +17,19 @@ export default function RootLayout({ }) { return ( - - {children} + + + {children} +