From 7f2c560ebd7a32f64c5c4c91ae0d5b8dfb4c85d3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 16:09:25 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2809 -------------------------------------------- 1 file changed, 2809 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 54b38d2..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2809 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Professional Landscaping & Gardening Services in Lucknow", - description: "Transform your outdoor spaces with expert landscaping, garden design, and horticultural services in Lucknow. 5-star rated, 24/7 available. Get free quote today!", - keywords: "landscaping Lucknow, garden design Lucknow, lawn care Lucknow, gardening services, horticultural services, landscape design", - metadataBase: new URL("https://www.rahulassociate.com"), - alternates: { - canonical: "https://www.rahulassociate.com", - }, - openGraph: { - title: "Professional Landscaping & Gardening Services in Lucknow", - description: "Expert landscaping and garden design services. 5-star rated. Available 24/7. Transform your outdoor spaces today!", - url: "https://www.rahulassociate.com", - siteName: "Rahul Associate & Horticulture Landscape Garden", - type: "website", - images: [ - { - url: "https://www.rahulassociate.com/og-image.jpg", - alt: "Beautiful garden landscaping services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Professional Landscaping Services in Lucknow", - description: "Transform your garden with expert landscaping and design services. 5-star rated, available 24/7!", - images: ["https://www.rahulassociate.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -