3 Commits

Author SHA1 Message Date
829f4d7f42 Update src/app/page.tsx 2026-03-31 17:23:38 +00:00
9c4a6c216d Merge version_1 into main
Merge version_1 into main
2026-03-31 17:21:51 +00:00
f7100f6cc2 Merge version_1 into main
Merge version_1 into main
2026-03-31 17:21:13 +00:00

View File

@@ -10,7 +10,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Award, Truck, Wrench } from "lucide-react";
import { CalendarDays, ShieldCheck, Clock3, HardHat } from "lucide-react";
export default function LandingPage() {
return (
@@ -31,12 +31,12 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "hero" },
{ name: "Services", id: "services" },
{ name: "Fleet", id: "products" },
{ name: "Contact", id: "contact" },
{ name: "Rental Fleet", id: "products" },
{ name: "Reviews", id: "testimonials" },
{ name: "Inquiry", id: "contact" },
]}
brandName="IronConstruct"
button={{ text: "Get Quote", href: "#contact" }}
button={{ text: "Request Equipment", href: "#contact" }}
/>
</div>
@@ -107,17 +107,17 @@ export default function LandingPage() {
useInvertedBackground={false}
metrics={[
{
id: "m1", value: "250+", title: "Active Projects", description: "Construction sites currently using our equipment.", icon: Wrench,
id: "m1", value: "99.8%", title: "Equipment Uptime", description: "Maintained fleet for reliable performance.", icon: ShieldCheck,
},
{
id: "m2", value: "1.2M", title: "Tons Delivered", description: "Raw materials successfully supplied.", icon: Truck,
id: "m2", value: "48 hrs", title: "Turnaround Time", description: "Average deployment time across all regions.", icon: Clock3,
},
{
id: "m3", value: "15+", title: "Years Experience", description: "Of heavy-duty industry excellence.", icon: Award,
id: "m3", value: "100+", title: "Rental Assets", description: "Comprehensive inventory ready for site.", icon: HardHat,
},
]}
title="Performance By The Numbers"
description="We drive efficiency across all construction sectors."
title="Rental Logistics Performance"
description="KPIs designed to ensure your rental experience is optimized and reliable."
/>
</div>
@@ -128,46 +128,47 @@ export default function LandingPage() {
useInvertedBackground={true}
testimonials={[
{
id: "t1", name: "Sarah Miller", role: "Site Manager", company: "Metro Builders", rating: 5,
id: "t1", name: "Marcus Thorne", role: "Project Lead", company: "BuildRight Rentals", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-showing-approval_23-2148269357.jpg"},
{
id: "t2", name: "James Chen", role: "Civil Engineer", company: "Urban Infrastructure", rating: 5,
id: "t2", name: "Elena Rios", role: "Site Coordinator", company: "ProGrade Infrastructure", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/building-construction-worker-site-with-architect_23-2149124257.jpg"},
{
id: "t3", name: "Robert Voss", role: "Foreman", company: "Clear Site", rating: 5,
id: "t3", name: "David Kwan", role: "Fleet Manager", company: "City Earthworks", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-engineer-male-ready-shake-hand_23-2148480414.jpg"},
]}
kpiItems={[
{
value: "98%", label: "On-Time Delivery"},
value: "95%", label: "Repeat Customers"},
{
value: "5/5", label: "Client Rating"},
value: "200+", label: "Units Deployed"},
{
value: "24/7", label: "Service Support"},
value: "5/5", label: "Rental Satisfaction"},
]}
title="Client Success Stories"
description="Hear what site managers and engineers have to say about our partnership."
title="Rental Partner Reviews"
description="Hear from project managers and fleet coordinators who rely on our rental equipment."
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Ready for your project?"
description="Reach out to our logistics team to get a quote or discuss machinery availability."
title="Submit Rental Inquiry"
description="Provide your project requirements and let our team prepare an equipment quote for you."
inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true,
name: "name", type: "text", placeholder: "Full Name", required: true,
},
{
name: "email", type: "email", placeholder: "Email Address", required: true,
name: "email", type: "email", placeholder: "Business Email", required: true,
},
{
name: "project", type: "text", placeholder: "Project Location"},
name: "equipment", type: "text", placeholder: "Required Equipment / Duration"},
]}
textarea={{
name: "message", placeholder: "Your requirements", rows: 4,
name: "inquiry", placeholder: "Specific project requirements or special instructions", rows: 4,
}}
buttonText="Submit Inquiry"
imageSrc="http://img.b2bpic.net/free-photo/industrial-area-factory-near-water-tanks-pipes_169016-68491.jpg"
mediaAnimation="slide-up"
/>
@@ -177,34 +178,34 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Company", items: [
title: "Business Information", items: [
{
label: "About Us", href: "#"},
label: "Rental Terms", href: "#"},
{
label: "Careers", href: "#"},
label: "Equipment Insurance", href: "#"},
],
},
{
title: "Support", items: [
title: "Customer Hub", items: [
{
label: "Contact Us", href: "#contact"},
label: "Rental Agreement", href: "#"},
{
label: "Fleet Maintenance", href: "#"},
],
},
{
title: "Corporate", items: [
{
label: "Logistics FAQ", href: "#"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
label: "Contact Leasing Dept", href: "#contact"},
],
},
]}
logoText="IronConstruct"
logoText="IronConstruct Rental"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}