Update src/app/layout.tsx

This commit is contained in:
2026-03-06 14:41:54 +00:00
parent df826ae523
commit 939e5fd438

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Mo's Beautiful - Professional Hair & Beauty Salon Krugersdorp", description: "Professional braids, locs, weave installs, sew-ins, and makeup in Krugersdorp. 5-star salon in Munsieville. Book appointments on WhatsApp or call 071 643 3346.", keywords: "hair salon Krugersdorp, professional braids, weave installation, hair styling, makeup services, Munsieville salon", metadataBase: new URL("https://mosbeautiful.com"),
alternates: {
canonical: "https://mosbeautiful.com"},
openGraph: {
title: "Mo's Beautiful - Krugersdorp's Trusted Hair & Beauty Salon", description: "Professional hair and beauty services including braids, locs, weave installs, and makeup. Open until 8 PM daily.", url: "https://mosbeautiful.com", siteName: "Mo's Beautiful Salon", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/beauty-black-woman-portrait-closeup-short-haircut-softlight_633478-855.jpg", alt: "Beautiful professional braids at Mo's Beautiful"},
],
},
twitter: {
card: "summary_large_image", title: "Mo's Beautiful - Professional Hair Salon", description: "Professional braids, locs, weave installs, and makeup in Krugersdorp.", images: [
"http://img.b2bpic.net/free-photo/beauty-black-woman-portrait-closeup-short-haircut-softlight_633478-855.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Mo's Beautiful - Hair & Beauty Salon Krugersdorp", description: "Professional braids, locs, weave installs, sew-ins, and makeup services in Krugersdorp"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}