6 Commits

Author SHA1 Message Date
1a717ab17e Merge version_2 into main
Merge version_2 into main
2026-03-03 17:20:49 +00:00
b9da4614c2 Update src/app/page.tsx 2026-03-03 17:20:44 +00:00
9728c0f001 Update src/app/layout.tsx 2026-03-03 17:20:44 +00:00
f9e2d989ee Merge version_1 into main
Merge version_1 into main
2026-03-03 17:18:57 +00:00
b38337245d Merge version_1 into main
Merge version_1 into main
2026-03-03 17:05:56 +00:00
c51c4b9adc Merge version_1 into main
Merge version_1 into main
2026-03-03 16:56:36 +00:00
2 changed files with 8 additions and 41 deletions

View File

@@ -1,52 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Lato } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const lato = Lato({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "BuildPro Construction | Premium Building & Renovation Services", description: "Award-winning construction company specializing in residential, commercial, and renovation projects. 20+ years experience, 500+ completed projects.", keywords: "construction company, home renovation, commercial building, construction services, contractors", openGraph: { title: "BuildPro - Construction & Renovation Services", description: "Award-winning construction company delivering premium residential, commercial, and renovation projects."};
title: "BuildPro Construction | Premium Building & Renovation Services", description: "Expert construction and renovation services for residential and commercial projects", type: "website", siteName: "BuildPro Construction"
},
twitter: {
card: "summary_large_image", title: "BuildPro Construction | Premium Building & Renovation Services", description: "Award-winning construction company with 20+ years of experience"
},
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={`${lato.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1414,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -48,8 +48,8 @@ export default function LandingPage() {
tagIcon={Hammer} tagIcon={Hammer}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "View Our Work", href: "projects" }, { text: "Request Quote", href: "contact" },
{ text: "Request Quote", href: "contact" } { text: "See Our Portfolio", href: "projects" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "plain" }} background={{ variant: "plain" }}