diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b33e2e0..0cf9678 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,69 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Mulish } from "next/font/google";
+import { Geist, Geist_Mono } 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 geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const mulish = Mulish({
- variable: "--font-mulish",
- subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "JTN Consulting | Civil Engineering & Project Management",
- description: "Professional civil engineering consulting and project management services across South Africa. Expert infrastructure design, construction oversight, and technical advisory.",
- keywords: "civil engineering, project management, infrastructure design, consulting, South Africa",
- openGraph: {
- title: "JTN Consulting - Civil Engineering Excellence",
- description: "Delivering reliable engineering solutions and professional project management across South Africa.",
- type: "website",
- siteName: "JTN Consulting",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/aerial-views-with-streets_23-2148959678.jpg",
- alt: "Civil Engineering Infrastructure",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "JTN Consulting - Civil Engineering & Project Management",
- description: "Professional consulting services for infrastructure and engineering projects.",
- images: ["http://img.b2bpic.net/free-photo/aerial-views-with-streets_23-2148959678.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "JTN Consulting - Civil Engineering & Project Management", description: "Expert civil engineering consulting and professional project management services across South Africa."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 10fe34d..b148fa7 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -155,16 +155,16 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}