6 Commits

Author SHA1 Message Date
292eec0bfa Merge version_2 into main
Merge version_2 into main
2026-03-07 12:36:38 +00:00
6bd43298a9 Update src/app/page.tsx 2026-03-07 12:36:33 +00:00
2f6fa02f39 Update src/app/layout.tsx 2026-03-07 12:36:33 +00:00
6bd587c76e Merge version_1 into main
Merge version_1 into main
2026-03-07 12:35:38 +00:00
9af98912ba Merge version_1 into main
Merge version_1 into main
2026-03-07 12:34:31 +00:00
89298fe26b Merge version_1 into main
Merge version_1 into main
2026-03-07 12:32:28 +00:00
2 changed files with 18 additions and 60 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1431,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -155,16 +155,16 @@ export default function HomePage() {
<MetricCardTwo
metrics={[
{
id: "1", value: "Experienced", description:
id: "1", value: "20+ Years", description:
"Highly qualified engineering professionals with decades of combined expertise"},
{
id: "2", value: "Reliable", description:
id: "2", value: "98% On-Time", description:
"Consistent on-time project delivery with quality assurance at every stage"},
{
id: "3", value: "Client-Focused", description:
id: "3", value: "100% Custom", description:
"Customized solutions tailored to your specific project requirements and goals"},
{
id: "4", value: "Certified", description:
id: "4", value: "ISO Certified", description:
"ISO certified standards ensuring professional excellence and regulatory compliance"},
]}
title="Why Choose JTN Consulting"
@@ -251,4 +251,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}