From dfd2a6ad511d0f775753d3d4999d3dbd789c3f3f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 10:23:37 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 60 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 51 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..98b22d0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,69 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } 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 { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "CA Contractors - Construction & Renovation Services Cape Town", + description: "Professional construction, renovations, and home extensions in Cape Town. Local Brackenfell contractors providing quality workmanship and honest pricing. Call 063 516 4349 for a free quote.", + keywords: "contractors Cape Town, construction company Cape Town, home renovations Cape Town, builders Cape Town, property maintenance, home extensions, Brackenfell contractors", + metadataBase: new URL("https://www.cacontractors.co.za"), + alternates: { + canonical: "https://www.cacontractors.co.za", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "CA Contractors - Construction & Renovation Services Cape Town", + description: "Professional construction and renovation services serving Cape Town and surrounding areas.", + url: "https://www.cacontractors.co.za", + siteName: "CA Contractors", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/team-business-people-group-architect-engineers-international-partners_1157-48547.jpg", + alt: "CA Contractors - Professional construction team Cape Town", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "CA Contractors - Construction & Renovation Cape Town", + description: "Quality workmanship. Honest pricing. Local professionals you can trust.", + images: [ + "http://img.b2bpic.net/free-photo/team-business-people-group-architect-engineers-international-partners_1157-48547.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +72,9 @@ export default function RootLayout({ return ( - + {children}