Update src/app/layout.tsx
This commit is contained in:
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Archivo } 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 { Archivo } 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 archivo = Archivo({
|
||||
variable: "--font-archivo",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "HAUS Male Grooming - Award-Winning Barbershop in Bournemouth",
|
||||
description: "Premium barbershop in Bournemouth offering expert haircuts, skin fades, and beard grooming. Award-winning service with precision styling and exceptional client experience.",
|
||||
keywords: "barbershop Bournemouth, best barber Bournemouth, skin fade Bournemouth, men's haircut Bournemouth, beard trimming, male grooming",
|
||||
metadataBase: new URL("https://haus-barbershop.com"),
|
||||
alternates: {
|
||||
canonical: "https://haus-barbershop.com",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "HAUS Male Grooming - Award-Winning Barbershop Bournemouth",
|
||||
description: "Premium precision haircuts and grooming services. Award-winning barbershop delivering exceptional results.",
|
||||
url: "https://haus-barbershop.com",
|
||||
siteName: "HAUS Male Grooming",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/man-hair-salon-facing-camera_23-2148242763.jpg",
|
||||
alt: "HAUS Male Grooming Barbershop",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "HAUS Male Grooming - Award-Winning Barbershop",
|
||||
description: "Premium precision barbershop in Bournemouth. Expert haircuts and grooming.",
|
||||
images: ["http://img.b2bpic.net/free-photo/man-hair-salon-facing-camera_23-2148242763.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user