Update src/app/layout.tsx

This commit is contained in:
2026-03-04 12:42:34 +00:00
parent 1e81b04ac7
commit 7a423a3a1c

View File

@@ -1,55 +1,21 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Professional Services in Midrand | Local Business", description: "Professional services in Midrand at China Town Mall. Call 078 980 4771. Same-day service, transparent pricing, trusted by local customers.", keywords: "Midrand services, China Town Mall, Old Pretoria Rd, local business, professional service, Midrand expert", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Professional Services in Midrand | Local Business", description: "Trusted local service provider in Midrand. Call 078 980 4771 for professional solutions.", type: "website", siteName: "Local Business", images: [
{
url: "http://img.b2bpic.net/free-photo/exterior-modern-buildings_1112-1993.jpg", alt: "Professional storefront in China Town Mall, Midrand"},
],
},
twitter: {
card: "summary_large_image", title: "Professional Services in Midrand", description: "Trusted local service provider. Call 078 980 4771", images: ["http://img.b2bpic.net/free-photo/exterior-modern-buildings_1112-1993.jpg"],
},
};
title: "Nation Barber Shop | Premium Barbering Services in Midrand", description: "Professional barbering services at Nation Barber Shop in Midrand. Expert haircuts, grooming, and styling by skilled barbers. Located in China Town Mall, Old Pretoria Rd."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${poppins.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}