4 Commits

Author SHA1 Message Date
4e04ddbfd5 Update src/app/layout.tsx 2026-03-06 15:46:52 +00:00
24e6f9c36e Merge version_1 into main
Merge version_1 into main
2026-03-06 15:40:22 +00:00
42c36fc00d Merge version_1 into main
Merge version_1 into main
2026-03-06 15:39:17 +00:00
c1efc53385 Merge version_1 into main
Merge version_1 into main
2026-03-06 15:38:06 +00:00

View File

@@ -1,49 +1,23 @@
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"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Sihlangene Management Services | Professional Services Johannesburg", description: "Trusted professional management services in Johannesburg. 15+ years of expertise serving local businesses. Call 011 478 2334 for consulting, business management, and project support.", keywords: "management services johannesburg, professional management johannesburg, business consulting johannesburg, management consulting northcliff, johannesburg business services", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Sihlangene Management Services | Johannesburg", description: "Professional management services you can trust. Local expertise, proven results.", type: "website", siteName: "Sihlangene Management Services", url: "https://sihlangenemanagement.co.za"},
twitter: {
card: "summary_large_image", title: "Sihlangene Management Services", description: "Professional management services in Johannesburg"},
};
title: "Sihlangene Management Services | Professional Management Solutions in Johannesburg", description: "Trusted professional management services in Johannesburg. 15+ years of expertise in business management, consulting, project management, and administrative support."};
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.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}