From 809afa7a1f851890bbd79d85f8b8a85d0e018269 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:35:08 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index eaae952..7ab6a61 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -53,7 +53,7 @@ export default function AboutPage() { title: "Successful Projects Completed", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/architects-wearing-helmets-looking-plan_23-2147702490.jpg" + imageSrc="http://img.b2bpic.net/free-photo/architects-wearing-helmets-looking-plan_23-2147702490.jpg?_wi=2" imageAlt="Empyreal Construction professional team at work" mediaAnimation="slide-up" metricsAnimation="slide-up" @@ -73,21 +73,21 @@ export default function AboutPage() { { title: "Quality First", description: "We never compromise on quality. Every project receives our full attention and expertise to ensure superior craftsmanship.", - imageSrc: "http://img.b2bpic.net/free-photo/two-people-working-warehouse_329181-12851.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/two-people-working-warehouse_329181-12851.jpg?_wi=2", imageAlt: "quality inspection construction testing", buttonIcon: ArrowRight, }, { title: "Professional Integrity", description: "Honesty and transparency in all dealings. We maintain clear communication with clients at every stage of the project.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-portrait-architect-holding-plans_23-2148233676.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-portrait-architect-holding-plans_23-2148233676.jpg?_wi=2", imageAlt: "professional construction team coordination", buttonIcon: ArrowRight, }, { title: "Client Focused", description: "Your vision is our mission. We listen carefully to understand your needs and deliver solutions that exceed expectations.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-talking-about-construction-project_23-2148269313.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-talking-about-construction-project_23-2148269313.jpg?_wi=2", imageAlt: "construction team discussing project with client", buttonIcon: ArrowRight, }, -- 2.49.1 From 3b58ab54b54ea04200709dc1072da3f307055e9c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:35:09 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 45 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..50ce791 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Poppins } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,37 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Empyreal Construction | Premium Building Services in Pretoria", + description: "Trusted construction company in Pretoria offering residential, commercial, renovation, and project management services. 4.6★ rating from 21 clients. Get your free quote today.", + keywords: "construction company Pretoria, residential construction, commercial building, renovation services, project management, construction services South Africa", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Empyreal Construction | Building Excellence in Pretoria", + description: "Professional construction solutions with quality craftsmanship. Residential, commercial, renovations, and maintenance.", + type: "website", + siteName: "Empyreal Construction", + url: "https://empyreal.co.za", + images: [ + { + url: "http://img.b2bpic.net/free-photo/medium-shot-people-talking-about-construction-project_23-2148269313.jpg", + alt: "Empyreal Construction - Premium Building Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Empyreal Construction | Pretoria", + description: "Trusted construction solutions with premium quality craftsmanship", + images: [ + "http://img.b2bpic.net/free-photo/medium-shot-people-talking-about-construction-project_23-2148269313.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +63,9 @@ export default function RootLayout({ return ( - + {children}