Files
521be027-80cc-4c19-97a1-029…/src/app/page.tsx
2026-05-12 19:49:05 +00:00

128 lines
7.6 KiB
TypeScript

"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Building2, Briefcase, Zap, Shield, Award } from "lucide-react";
export default function ADBPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="metallic"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="ADB Construction Group"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B8eytcgt9G5DKgMmGyOS3YVJIn/uploaded-1778615178301-r6976zbj.png"
navItems={[
{ name: "Projects", id: "projects" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Request Qualifications", href: "#contact" }}
/>
<div id="hero">
<HeroSplitDoubleCarousel
title="Delivering Complex Projects for Public Agencies and Commercial Clients"
description="30+ years of design and construction experience. Disciplined execution. Measurable results for Southern California infrastructure."
tag="Licensed General Contractor (A & B)"
tagIcon={Building2}
tagAnimation="slide-up"
background={{ variant: "plain" }}
buttons={[
{ text: "Request Qualifications", href: "#contact" },
{ text: "Submit Plans", href: "#contact" },
{ text: "Invite to Bid", href: "#contact" },
]}
buttonAnimation="slide-up"
carouselPosition="right"
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/aerial-shot-roads-middle-old-buildings-near-trees_181624-4363.jpg", imageAlt: "Public works infrastructure site" },
{ imageSrc: "http://img.b2bpic.net/free-photo/construction-site_1203-2849.jpg", imageAlt: "Industrial facility construction" },
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-november-11-2024-glimpse-into-bangkok-urban-landscape_482257-123954.jpg", imageAlt: "Modern municipal building project" },
{ imageSrc: "http://img.b2bpic.net/free-photo/he-s-got-some-interesting-ideas_329181-15206.jpg", imageAlt: "Commercial construction management" },
]}
/>
</div>
<div id="services">
<FeatureBento
title="Core Specializations"
description="Focused expertise in complex environments and public works sectors."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
features={[
{ title: "Public Works", description: "Municipal, utility, and civil improvement infrastructure projects.", heading: "Public Works", subheading: "Infrastructure Development", items: [{ event: "Project Alpha" }, { event: "Project Beta" }, { event: "Project Gamma" }], completedLabel: "Completed" },
{ title: "Commercial", description: "High-standard tenant improvements and ground-up commercial construction.", heading: "Commercial", subheading: "Building Systems", items: [{ event: "Project Alpha" }, { event: "Project Beta" }, { event: "Project Gamma" }], completedLabel: "Completed" },
{ title: "Healthcare", description: "Regulated environments requiring strict safety and compliance standards.", heading: "Healthcare", subheading: "Medical Facilities", items: [{ event: "Project Alpha" }, { event: "Project Beta" }, { event: "Project Gamma" }], completedLabel: "Completed" },
{ title: "Industrial", description: "Heavy infrastructure and pre-engineered metal building systems.", heading: "Industrial", subheading: "Heavy Infrastructure", items: [{ event: "Project Alpha" }, { event: "Project Beta" }, { event: "Project Gamma" }], completedLabel: "Completed" },
]}
/>
</div>
<MetricCardOne
title="Proven Performance"
description="Data-driven results for our partners in the public and commercial sectors."
textboxLayout="default"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
metrics={[
{ id: "years", value: "30+", title: "Years Experience", description: "Combined design and construction expertise", icon: Award },
{ id: "value", value: "$100M+", title: "Projects Delivered", description: "Total contract value in Southern California", icon: Briefcase },
{ id: "damages", value: "0", title: "Liquidated Damages", description: "Consistent record of on-time delivery", icon: Shield },
]}
/>
<FeatureCardSixteen
title="Our Strategic Advantage"
description="ADB Construction Group solves problems before they escalate, providing direct accountability to every stakeholder."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
negativeCard={{ items: ["Fragmented communication", "Delayed decision-making", "Hidden budget assumptions", "Compliance risks", "Generic execution strategies"] }}
positiveCard={{ items: ["Preconstruction-first approach", "Direct leadership access", "Transparent budget reporting", "DSA and OSHA expertise", "Design-Build intelligence"] }}
/>
<div id="contact">
<ContactCTA
tag="Partnership"
title="Ready to discuss your next project?"
description="Contact us for RFQ submissions, plan reviews, or to invite us to bid on your upcoming work."
background={{ variant: "plain" }}
buttons={[
{ text: "Request Qualifications", href: "#contact" },
{ text: "Submit Plans for Review", href: "#contact" },
]}
useInvertedBackground={true}
/>
</div>
<FooterBase
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B8eytcgt9G5DKgMmGyOS3YVJIn/uploaded-1778615178301-r6976zbj.png"
logoText="ADB Construction Group"
copyrightText="© 2024 ADB Construction Group | 2010 N Tustin Ave, Santa Ana, CA 92705"
columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }, { label: "Contact", href: "#" }] },
{ title: "Services", items: [{ label: "Public Works", href: "#" }, { label: "Commercial", href: "#" }, { label: "Healthcare", href: "#" }] },
{ title: "Bidding", items: [{ label: "Opportunities", href: "#" }, { label: "Subcontractors", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}