From ee41ba89039211065b33e035a57aa45e6c44e752 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Mar 2026 14:21:15 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..858b852 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,54 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } 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 { DM_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Professional Gardening & Landscaping Services in Randburg", + description: "Expert lawn mowing, fencing, tree cutting, and landscaping services in Randburg, Fourways. Fast, reliable, and affordable. 5.0 ⭐ rated. Call 084 835 9057.", + keywords: "gardening services Randburg, lawn mowing Fourways, landscaping services, tree cutting, garden maintenance, fencing installation, irrigation repair", + metadataBase: new URL("https://deepwatersgardening.co.za"), + alternates: { + canonical: "https://deepwatersgardening.co.za", + }, + openGraph: { + title: "Deep Waters Gardening Services - Randburg", + description: "Professional gardening and landscaping services you can trust. Serving Randburg and Fourways.", + url: "https://deepwatersgardening.co.za", + siteName: "Deep Waters Gardening Services", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Deep Waters Gardening Services - Randburg", + description: "Professional gardening and landscaping services you can trust.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +57,9 @@ export default function RootLayout({ return ( - + {children}