Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a94715433 | |||
| 65ff895021 | |||
| 704a39191e | |||
| 9206980132 | |||
| e479e4c21d |
@@ -1,55 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Quicksand } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Open_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const quicksand = Quicksand({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
variable: "--font-quicksand"});
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const openSans = Open_Sans({
|
|
||||||
variable: "--font-open-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Wealth Construction | Professional Services Durban KZN", description: "Premier construction services in Durban, KZN. Painting, roofing, electrical, plumbing, paving, and turnkey building solutions. Trusted by 500+ clients.", keywords: "construction Durban, painting services, roofing, electrical, plumbing, paving, KZN construction, building contractor", metadataBase: new URL("https://wealthconstruction.co.za"),
|
title: "Wealth Construction - Professional Construction Services in Durban, KZN", description: "Premium construction and renovation services in Durban, KZN. Painting, roofing, electrical, plumbing, paving, and more. Your trusted partner for quality craftsmanship.", keywords: "construction, durban, painting, roofing, electrical, plumbing, paving, renovation, KZN"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://wealthconstruction.co.za"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Wealth Construction - Quality Building Services", description: "Professional construction and renovation services in Durban, KZN. Expert craftsmanship in painting, roofing, electrical, and more.", url: "https://wealthconstruction.co.za", siteName: "Wealth Construction", type: "website"
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Wealth Construction - Building Excellence in Durban", description: "Your trusted partner for quality construction services in KZN Durban"
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={quicksand.variable}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Ready to transform your property? Contact us today via WhatsApp or email. Our team in Durban is ready to provide expert guidance and professional solutions for your construction needs."
|
text="Get expert guidance in 24 hours. Ready to transform your property? Contact us today via WhatsApp or email. Our team in Durban is ready to provide expert guidance and professional solutions for your construction needs."
|
||||||
animationType="entrance-slide"
|
animationType="entrance-slide"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "WhatsApp Us", href: "https://wa.me/27xxxxxxxxx" },
|
{ text: "WhatsApp Us", href: "https://wa.me/27xxxxxxxxx" },
|
||||||
|
|||||||
Reference in New Issue
Block a user