Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ba0ee9d4ce | |||
| 1c9077c227 | |||
| 0fe4ab14b6 |
@@ -1,52 +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 { Poppins } 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 poppins = Poppins({
|
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: "Trusted construction company specializing in commercial and residential projects. Expert project management, design-build solutions, and safety compliance."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
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} ${poppins.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1414,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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."
|
description="Trusted by commercial and residential clients across the region. See our completed projects and request your free consultation today."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View Our Projects", href: "#projects" },
|
{ text: "View Our Projects", href: "#projects" },
|
||||||
{ text: "Get Free Consultation", href: "#contact" }
|
{ text: "Schedule Free Consultation", href: "#contact" }
|
||||||
]}
|
]}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
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"
|
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>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user