Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 04d98b88ab | |||
| c85f0d459d | |||
| e3e2f04db9 | |||
| 09ee92fa23 | |||
| e1aeaef726 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } 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 inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "BuildCraft - Expert Construction Services", description: "Professional construction company delivering on-time, on-budget projects with 98% client satisfaction. Residential, commercial, and infrastructure solutions."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
title="Building Dreams into Reality"
|
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"
|
tag="Premium Construction"
|
||||||
tagIcon={Hammer}
|
tagIcon={Hammer}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user