From b41cc8c9b0a75725a9bae7e2db23efe72a8818ac Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:05:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1423 +------------------------------------------- 1 file changed, 14 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6071b8a..6d6da9f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,30 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Manrope } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Garcia's Project - Landscaping & Hardscape in Addison, IL", description: "Professional landscaping and hardscape construction in Addison, IL. 5.0 rating from 44 reviews. Patio installation, retaining walls, landscape design. Free estimates.", keywords: "landscaping Addison IL, hardscape contractor, paver patio, retaining wall, landscape design", metadataBase: new URL("https://garciasproject.local"), - alternates: { - canonical: "https://garciasproject.local" - }, - openGraph: { - title: "Garcia's Project - Transform Your Yard", description: "Professional landscaping & hardscape construction trusted by Addison homeowners. 5.0 Google rating.", url: "https://garciasproject.local", siteName: "Garcia's Project", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/vintage-landscape-photo_23-2149728869.jpg", alt: "Beautiful backyard transformation by Garcia's Project" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Garcia's Project - Professional Landscaping", description: "Transform your yard into an outdoor oasis. Expert hardscape & landscape services in Addison, IL.", images: ["http://img.b2bpic.net/free-photo/vintage-landscape-photo_23-2149728869.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Garcia's Project - Landscape & Hardscape Construction", description: "Professional landscaping and hardscape construction services in Chicago suburbs"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + {children} - +