diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d39bc1b..590ad23 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}