From 0049fcd327c3b0572150144f8ceaaa2463f70c28 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:27:40 +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 2ec7d95..6059486 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: "A Cut Above Lawn & Landscape | Professional Lawn Care Houston", description: "Professional lawn care and landscaping services in Houston. 4.9★ rated. Fair pricing, reliable service, 24/7 availability. Get your free estimate today.", keywords: "lawn care near me, landscaping Houston, lawn mowing service, yard cleanup, professional landscaper", metadataBase: new URL("https://acutabove.com"), - alternates: { - canonical: "https://acutabove.com" - }, - openGraph: { - title: "A Cut Above Lawn & Landscape | Professional Lawn Care Houston", description: "Professional lawn care and landscaping services in Houston. 4.9★ rated with 120+ reviews. Fair pricing, reliable service.", url: "https://acutabove.com", siteName: "A Cut Above Lawn & Landscape", type: "website", images: [ - { - url: "https://acutabove.com/og-image.jpg", alt: "A Cut Above Lawn & Landscape - Professional Service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "A Cut Above Lawn & Landscape", description: "Professional lawn care and landscaping services in Houston.", images: ["https://acutabove.com/twitter-image.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "A Cut Above - Professional Lawn Care & Landscaping", description: "Reliable lawn care, landscaping, and yard cleanup services in Houston. Fair pricing, professional team, 24/7 availability."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +