From ffbee1dff60d93268c0fdec7c179d103b1aac534 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 22:00:20 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4f14982..d5ed849 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Maddscape - Professional Lawn & Tree Care Bloomington MN", description: "Transform your outdoor space with Maddscape's expert lawn and tree care services in Bloomington, Minnesota. Free quotes available.", keywords: "lawn care Bloomington, tree service Minnesota, landscaping, lawn mowing, tree trimming, yard maintenance", metadataBase: new URL("https://maddscape.com"), - alternates: { - canonical: "https://maddscape.com" - }, - openGraph: { - title: "Maddscape - Lawn & Tree Care", description: "Professional landscaping and tree care services serving Bloomington, Minnesota since 2010.", url: "https://maddscape.com", siteName: "Maddscape", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOwSmiMg7IJg0cZ1Elrp46VuU1/uploaded-1772483717110-xc7k6n8c.jpg", alt: "Maddscape Professional Lawn Care" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Maddscape - Professional Lawn & Tree Care", description: "Expert landscaping services in Bloomington, MN", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOwSmiMg7IJg0cZ1Elrp46VuU1/uploaded-1772483717110-xc7k6n8c.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Maddscape - Professional Lawn & Tree Care", description: "Professional lawn and tree care services in Bloomington, Minnesota. Expert landscaping, tree trimming, and yard maintenance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}