From b56106b2e43375ed368827e9fbc8526ca9b160aa Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 08:01:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dcfe749..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ import type { Metadata } from "next"; -import { Figtree } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", 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 geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Tammin's Lawn & Garden Service - South Wentworthville", description: "Professional lawn mowing, edging, and garden maintenance in South Wentworthville. Affordable, reliable service with 4.8★ rating. Free quotes available.", keywords: "lawn mowing South Wentworthville, lawn care Wentworthville, garden maintenance, affordable lawn service, professional gardener", metadataBase: new URL("https://tammins-lawn-garden.com"), - alternates: { - canonical: "https://tammins-lawn-garden.com" - }, - openGraph: { - title: "Tammin's Lawn & Garden Service - South Wentworthville", description: "Professional lawn mowing and garden care. Reliable. Affordable. Detailed work every time.", url: "https://tammins-lawn-garden.com", siteName: "Tammin's Lawn & Garden Service", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/unrecognizable-male-gardener-pushing-modern-lawn-mower-while-walking-grass-view-handyman_7502-10570.jpg", alt: "Professional lawn mowing service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Tammin's Lawn & Garden Service", description: "Professional lawn care in South Wentworthville", images: ["http://img.b2bpic.net/free-photo/unrecognizable-male-gardener-pushing-modern-lawn-mower-while-walking-grass-view-handyman_7502-10570.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +