Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 12:17:23 +00:00
2 changed files with 7 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "BuildPro Construction | Premium Building Solutions", description: "Expert construction services for commercial, residential, and industrial projects. 20+ years of excellence in delivering quality builds on time and on budget.", keywords: "construction, building, contractor, commercial construction, residential construction, project management", robots: {
index: true,
follow: true,
},
openGraph: {
title: "BuildPro Construction | Premium Building Solutions", description: "Expert construction services delivering quality projects on time and within budget.", type: "website", siteName: "BuildPro"},
twitter: {
card: "summary_large_image", title: "BuildPro Construction | Premium Building Solutions", description: "Expert construction services for commercial and residential projects."},
};
title: "BuildPro - Construction Solutions", description: "Professional construction and development services"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -196,7 +196,7 @@ export default function LandingPage() {
tag="Ready to Build?"
tagIcon={Mail}
tagAnimation="slide-up"
title="Let's Discuss Your Next Construction Project"
title="Get Your Free Project Estimate in 24 Hours"
description="Contact our team today to discuss your vision and explore how BuildPro can bring it to life with excellence and expertise."
background={{ variant: "canvas-reveal" }}
useInvertedBackground={true}