5 Commits

Author SHA1 Message Date
04d98b88ab Update src/app/page.tsx 2026-03-05 17:23:27 +00:00
c85f0d459d Update src/app/layout.tsx 2026-03-05 17:23:26 +00:00
e3e2f04db9 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:22:24 +00:00
09ee92fa23 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:19:51 +00:00
e1aeaef726 Merge version_1 into main
Merge version_1 into main
2026-03-05 17:17:53 +00:00
2 changed files with 7 additions and 42 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } 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 openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "BuildCraft | Expert Construction Services", description: "Premier construction company delivering residential, commercial, and infrastructure projects with quality, precision, and innovation. 500+ completed projects.", keywords: "construction, building, commercial, residential, renovation, contractor", robots: {
index: true,
follow: true,
},
openGraph: {
title: "BuildCraft | Expert Construction Services", description: "Premier construction company delivering exceptional results on residential, commercial, and infrastructure projects.", type: "website", siteName: "BuildCraft", images: [
{
url: "http://img.b2bpic.net/free-photo/woman-men-looking-laptop-construction_259150-57850.jpg", alt: "BuildCraft Construction Services"},
],
},
twitter: {
card: "summary_large_image", title: "BuildCraft | Expert Construction Services", description: "Premier construction company with 500+ completed projects and 98% client satisfaction.", images: ["http://img.b2bpic.net/free-photo/woman-men-looking-laptop-construction_259150-57850.jpg"],
},
};
title: "BuildCraft - Expert Construction Services", description: "Professional construction company delivering on-time, on-budget projects with 98% client satisfaction. Residential, commercial, and infrastructure solutions."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -43,7 +43,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardGallery
title="Building Dreams into Reality"
description="Expert construction services delivering quality, precision, and innovation. From residential to commercial projects, we build what matters."
description="On-time, on-budget project delivery with 98% client satisfaction. Expert construction services combining precision, innovation, and craftsmanship."
tag="Premium Construction"
tagIcon={Hammer}
tagAnimation="slide-up"