diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..189d87d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,38 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "GLOW&GO Hand Car Wash - Premium Detail in Glasgow", + description: "Expert hand car wash service in Glasgow. Premium detailing, eco-friendly methods, 5-star rated. Book now: +44 7438 430905", + keywords: "contact car wash, book appointment, Glasgow car wash, call now", + metadataBase: new URL("https://glowandgo.com"), + alternates: { + canonical: "https://glowandgo.com/contact", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +41,9 @@ export default function RootLayout({ return ( - + {children}