5 Commits

Author SHA1 Message Date
59a225097c Update src/app/page.tsx 2026-03-06 16:10:23 +00:00
c9a38344a4 Update src/app/page.tsx 2026-03-06 16:07:50 +00:00
9c13ae4521 Update src/app/page.tsx 2026-03-06 16:05:09 +00:00
718953c86c Update src/app/layout.tsx 2026-03-06 16:05:09 +00:00
173b3bb305 Merge version_1 into main
Merge version_1 into main
2026-03-06 16:04:49 +00:00

View File

@@ -1,52 +1,20 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
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,
},
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}