From 00d97767a46612d7201bd4e5bca3112275cdacf6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:50:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 97543c4..be7d9e0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Lawn Care in Maury City, TN | Top Cut", description: "Expert lawn mowing, landscaping, and seasonal cleanup services in Maury City, TN. 5-star rated local lawn care company. Call (731) 694-9070 for a free quote.", keywords: "lawn care Maury City TN, lawn mowing, landscaping, yard cleanup, shrub trimming, tree service", metadataBase: new URL("https://topcut-lawn.com"), - alternates: { - canonical: "https://topcut-lawn.com"}, - openGraph: { - title: "Professional Lawn Care in Maury City, TN", description: "Expert lawn mowing and landscaping services. 5-star rated. Call for your free quote today.", url: "https://topcut-lawn.com", siteName: "Top Cut Lawn & Landscape", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/smiling-male-landscaper-denim-shirt-trimming-overgrown-lawn-with-lawn-mover-summer-day-low_7502-10170.jpg", alt: "Professional lawn care services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional Lawn Care in Maury City, TN", description: "Expert lawn mowing and landscaping services by Top Cut.", images: ["http://img.b2bpic.net/free-photo/smiling-male-landscaper-denim-shirt-trimming-overgrown-lawn-with-lawn-mover-summer-day-low_7502-10170.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Top Cut Lawn & Landscape | Professional Lawn Care in Maury City, TN", description: "Professional lawn mowing, landscaping, and seasonal cleanup services in Maury City, TN. We keep your yard looking its best year-round."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}