11 Commits

Author SHA1 Message Date
7ac694f881 Merge version_3 into main
Merge version_3 into main
2026-03-05 19:41:38 +00:00
38d51c9145 Update theme colors 2026-03-05 19:41:32 +00:00
e29521f2cd Merge version_3 into main
Merge version_3 into main
2026-03-05 19:41:20 +00:00
045ea21d42 Update theme colors 2026-03-05 19:41:14 +00:00
a5cf40d45b Merge version_3 into main
Merge version_3 into main
2026-03-05 19:39:48 +00:00
ad15e3f278 Update src/app/page.tsx 2026-03-05 19:39:44 +00:00
27d46c4673 Update src/app/layout.tsx 2026-03-05 19:39:43 +00:00
82691eb13c Merge version_2 into main
Merge version_2 into main
2026-03-05 19:38:08 +00:00
ba0ee9d4ce Update src/app/page.tsx 2026-03-05 19:38:04 +00:00
1c9077c227 Update src/app/layout.tsx 2026-03-05 19:38:04 +00:00
0fe4ab14b6 Merge version_1 into main
Merge version_1 into main
2026-03-05 19:34:49 +00:00
3 changed files with 27 additions and 59 deletions

View File

@@ -1,52 +1,21 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
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: "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
}
title: "Envision Renovations - Professional Construction Services", description: "Trusted construction company specializing in commercial and residential projects. Expert project management, design-build solutions, and safety compliance."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -27,7 +27,7 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
brandName="BuildCraft"
brandName="Envision Renovations"
navItems={[
{ name: "Projects", id: "projects" },
{ name: "About", id: "about" },
@@ -36,17 +36,17 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" }
]}
bottomLeftText="Quality Construction"
bottomRightText="hello@buildcraft.com"
bottomRightText="hello@envisionrenovations.com"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="BuildCraft"
logoText="Envision Renovations"
description="Trusted by commercial and residential clients across the region. See our completed projects and request your free consultation today."
buttons={[
{ text: "View Our Projects", href: "#projects" },
{ text: "Get Free Consultation", href: "#contact" }
{ text: "Schedule Free Consultation", href: "#contact" }
]}
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"
@@ -114,7 +114,7 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
testimonial="BuildCraft transformed our vision into reality. Their professionalism, attention to detail, and commitment to timelines exceeded all expectations. We couldn't have asked for a better construction partner."
testimonial="Envision Renovations transformed our vision into reality. Their professionalism, attention to detail, and commitment to timelines exceeded all expectations. We couldn't have asked for a better construction partner."
rating={5}
author="Sarah Mitchell, Property Developer"
avatars={[
@@ -157,7 +157,7 @@ export default function LandingPage() {
text="Ready to start your next construction project? Let's create something extraordinary together. Contact us today for a free consultation."
animationType="entrance-slide"
buttons={[
{ text: "Request Consultation", href: "mailto:hello@buildcraft.com" },
{ text: "Request Consultation", href: "mailto:hello@envisionrenovations.com" },
{ text: "View Portfolio", href: "#projects" }
]}
background={{ variant: "sparkles-gradient" }}
@@ -167,15 +167,15 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterCard
logoText="BuildCraft"
copyrightText="© 2025 BuildCraft Construction. All rights reserved."
logoText="Envision Renovations"
copyrightText="© 2025 Envision Renovations. All rights reserved."
socialLinks={[
{ icon: Linkedin, href: "https://linkedin.com/company/buildcraft", ariaLabel: "LinkedIn" },
{ icon: Facebook, href: "https://facebook.com/buildcraft", ariaLabel: "Facebook" },
{ icon: Twitter, href: "https://twitter.com/buildcraft", ariaLabel: "Twitter" }
{ icon: Linkedin, href: "https://linkedin.com/company/envision-renovations", ariaLabel: "LinkedIn" },
{ icon: Facebook, href: "https://facebook.com/envisionrenovations", ariaLabel: "Facebook" },
{ icon: Twitter, href: "https://twitter.com/envisionreno", ariaLabel: "Twitter" }
]}
/>
</div>
</ThemeProvider>
);
}
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #6139e6;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta-text: #1c1c1c;
--accent: #6139e6;
--background-accent: #b3a8e8;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);