From 2f6fa02f394160fdcb04401dd8821b51e5af687c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 12:36:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 68 +++++++++------------------------------------- 1 file changed, 13 insertions(+), 55 deletions(-) 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} +