3 Commits

Author SHA1 Message Date
ba0ee9d4ce Update src/app/page.tsx 2026-03-05 19:38:04 +00:00
1c9077c227 Update src/app/layout.tsx 2026-03-05 19:38:04 +00:00
0fe4ab14b6 Merge version_1 into main
Merge version_1 into main
2026-03-05 19:34:49 +00:00
2 changed files with 8 additions and 41 deletions

View File

@@ -1,52 +1,20 @@
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";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "BuildCraft | Professional Construction Services", description: "Trusted construction company serving commercial and residential clients. 500+ completed projects, expert project management, and proven safety record.", keywords: "construction, contractor, commercial construction, residential builder, project management", openGraph: {
title: "BuildCraft | Professional Construction Services", description: "Quality Construction On Time Every Time - Trusted by developers and homeowners", type: "website", siteName: "BuildCraft"
},
twitter: {
card: "summary_large_image", title: "BuildCraft | Professional Construction Services", description: "Quality Construction On Time Every Time"
},
robots: {
index: true,
follow: true
}
};
title: "BuildCraft - Professional Construction Services", description: "Trusted construction company specializing in commercial and residential projects. Expert project management, design-build solutions, and safety compliance."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -46,7 +46,7 @@ export default function LandingPage() {
description="Trusted by commercial and residential clients across the region. See our completed projects and request your free consultation today."
buttons={[
{ text: "View Our Projects", href: "#projects" },
{ text: "Get Free Consultation", href: "#contact" }
{ text: "Schedule Free Consultation", href: "#contact" }
]}
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/two-women-professional-architects-holding-blueprints-colleagues-holding-laptop-looking-construction-plans-group-focused-architectural-engineers-analyzing-white-foam-scale-model_482257-30252.jpg"
@@ -178,4 +178,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}