From 2a10f4e152fb11030e46af1be5bb3297daf0e661 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 05:03:31 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..ad7d1d5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,27 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "24/7 Emergency Tree Removal & Lawn Service | A-1 Discount", + description: "Professional tree removal, trimming, and stump grinding available 24/7. 4.8-star rated. Free estimates. Insurance-approved vendor. Same-day emergency service.", + keywords: "tree removal, emergency tree service, tree trimming, stump grinding, 24/7 tree service, storm damage cleanup, lawn care", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Fast, Professional Tree Removal & Lawn Care — 24/7", + description: "Emergency tree removal with guaranteed cleanup. 4.8-star rated local service. Call now for same-day estimates.", + type: "website", + siteName: "A-1 Discount Tree & Lawn Service", + }, + twitter: { + card: "summary_large_image", + title: "24/7 Emergency Tree Removal Service", + description: "Professional tree service you can trust. Fast response, fair pricing, complete cleanup guaranteed.", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +53,9 @@ export default function RootLayout({ return ( - + {children}