Update src/app/equipment-rental/page.tsx

This commit is contained in:
2026-04-22 06:52:21 +00:00
parent b291fcda00
commit 1ef4cb9be3

View File

@@ -7,17 +7,31 @@ import FooterSimple from "@/components/sections/footer/FooterSimple";
export default function EquipmentRentalPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/#features" }, { name: "Contact", id: "#contact" }]}
brandName="G & G Mining Co"
/>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/#features" }, { name: "Contact", id: "#contact" }]}
brandName="G & G Mining Co"
button={{ text: "Contact Us", href: "#contact" }}
/>
</div>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-6">Equipment Rental</h1>
<p className="text-lg mb-8">Access our fleet of industrial-grade machinery and mining equipment for your short-term or long-term operational needs.</p>
</div>
<div id="contact"><ContactSplit title="Inquire About Equipment" description="Tell us about your machinery requirements to get a competitive quote." background={{ variant: "plain" }} /></div>
<FooterSimple columns={[]} bottomLeftText="© 2024 G & G Mining Co." logoText="G & G Mining Co" />
<div id="contact" data-section="contact">
<ContactSplit
title="Inquire About Equipment"
description="Tell us about your machinery requirements to get a competitive quote."
background={{ variant: "plain" }}
tag="Contact"
useInvertedBackground={false}
mediaAnimation="none"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple columns={[]} bottomLeftText="© 2024 G & G Mining Co." bottomRightText="All rights reserved." />
</div>
</ThemeProvider>
);
}