From 8dee9c99f564fb604efdde6b8e9773ad498dfc96 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 23:06:59 +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..b1f067f 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: "Garden Services in Twechar & Glasgow | S&T Garden Services", + description: "Professional garden maintenance, lawn cutting, hedge trimming, and landscaping in Twechar & Glasgow. 5-star rated, affordable, all waste removed. Call 07377 912483.", + keywords: "garden services Twechar, gardener Glasgow, lawn cutting, hedge trimming, garden maintenance, landscaping", + metadataBase: new URL("https://stgardenservices.co.uk"), + alternates: { + canonical: "https://stgardenservices.co.uk", + }, + openGraph: { + title: "S&T Garden Services - Twechar & Glasgow", + description: "Professional garden maintenance and landscaping services. 5-star rated local gardeners.", + type: "website", + siteName: "S&T Garden Services", + }, + twitter: { + card: "summary_large_image", + title: "Garden Services in Twechar & Glasgow", + description: "Professional gardening and landscaping. Call today for a free quote.", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +53,9 @@ export default function RootLayout({ return ( - + {children}