2 Commits

Author SHA1 Message Date
48f75b2478 Update src/app/page.tsx 2026-03-06 16:08:49 +00:00
959a771a8c Update src/app/page.tsx 2026-03-06 16:06:16 +00:00

View File

@@ -1,20 +1,52 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "@/styles/globals.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({ subsets: ["latin"] });
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "House of London - Premium Hair Salon in Toronto", description: "Experience luxury hair styling and professional beauty services at House of London. Expert stylists in Toronto, ON."};
title: "House of London Hair Salon | Premium Beauty Services", description: "Luxury hair salon offering professional cuts, coloring, and beauty treatments. Expert stylists dedicated to enhancing your natural beauty.", keywords: "hair salon, professional haircut, hair color, beauty services, London salon, luxury hair care", metadataBase: new URL("https://houseoflondon.com"),
alternates: {
canonical: "https://houseoflondon.com"},
openGraph: {
title: "House of London Hair Salon", description: "Transform your look at London's premier hair salon with luxury services and expert stylists.", url: "https://houseoflondon.com", siteName: "House of London", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/luxury-retro-wall-lamp-cafe_1150-10890.jpg", alt: "House of London luxury salon"},
],
},
twitter: {
card: "summary_large_image", title: "House of London Hair Salon", description: "Premium hair and beauty services in London", images: ["http://img.b2bpic.net/free-photo/luxury-retro-wall-lamp-cafe_1150-10890.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1414,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}