Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4e04ddbfd5 | |||
| 24e6f9c36e | |||
| 42c36fc00d | |||
| c1efc53385 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user