Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 46b8b30bcf | |||
| e796438ca9 | |||
| aa1c529ec7 |
@@ -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 { 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: "BuildCorp | Professional Construction Services", description: "Expert construction company specializing in residential, commercial, and renovation projects. 15+ years of excellence with 500+ completed projects.", keywords: "construction company, residential construction, commercial construction, renovation services, builders, construction contractor", metadataBase: new URL("https://buildcorp.com"),
|
title: "BuildCorp - Premium Construction Solutions", description: "Expert construction services for residential, commercial, and renovation projects"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://buildcorp.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "BuildCorp | Professional Construction Services", description: "Building excellence, one project at a time. Expert construction solutions for all your needs.", url: "https://buildcorp.com", siteName: "BuildCorp", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "BuildCorp | Professional Construction Services", description: "Expert construction company specializing in residential, commercial, and renovation projects."},
|
|
||||||
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} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1414,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ export default function LandingPage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MediaAbout
|
<MediaAbout
|
||||||
title="Building Your Vision"
|
title="Building Your Vision"
|
||||||
description="With over 15 years in the construction industry, BuildCorp has completed hundreds of projects across residential, commercial, and renovation sectors. Our team of certified professionals brings expertise, precision, and dedication to every project, ensuring quality results on time and on budget."
|
description="On-time, transparent, quality-guaranteed projects—every time. With over 15 years in the construction industry, BuildCorp has completed hundreds of projects across residential, commercial, and renovation sectors. Our team of certified professionals brings expertise, precision, and dedication to every project, ensuring quality results on time and on budget."
|
||||||
tag="Our Story"
|
tag="Our Story"
|
||||||
buttons={[{ text: "Learn More", href: "#services" }]}
|
buttons={[{ text: "Learn More", href: "#services" }]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/three-factory-workers-safety-hats-discussing-manufacture-plan_1303-30638.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/three-factory-workers-safety-hats-discussing-manufacture-plan_1303-30638.jpg"
|
||||||
|
|||||||
Reference in New Issue
Block a user