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} + +