From ff9ed1fbd38e2286f13e7be61ec7f4f6b545902c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 21:06:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f8e72da..376307d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "M. Escobar Landscaping | DMV Premium Lawn Care & Garden Design", description: "Professional landscaping services in the DMV with 12+ years of excellence. Expert lawn maintenance, garden design, raised beds, and seasonal services. Get your free estimate today.", keywords: "landscaping DMV, lawn care Virginia Maryland DC, landscape design, garden installation, professional landscaper", metadataBase: new URL("https://www.mescobarlandscaping.com"), - alternates: { - canonical: "https://www.mescobarlandscaping.com"}, - openGraph: { - title: "M. Escobar Landscaping | Premium Outdoor Design", description: "Transform your outdoor space with expert landscaping services serving the DMV. Over 12 years of trusted, professional craftsmanship.", url: "https://www.mescobarlandscaping.com", siteName: "M. Escobar Landscaping", images: [ - { - url: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803948.jpg", alt: "Professional landscaping portfolio"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "M. Escobar Landscaping", description: "Premium landscaping & garden design for DMV homeowners", images: ["http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803948.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "M. Escobar Landscaping | Premium Landscaping Services DMV", description: "Premium landscaping services in the DMV. Over 12 years of trusted, detail-driven work. Free estimates available."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}