Update src/app/layout.tsx

This commit is contained in:
2026-03-20 07:10:40 +00:00
parent e196da43ba
commit d7263ba315

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +55,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}