Add src/app/equipment-rental/page.tsx
This commit is contained in:
23
src/app/equipment-rental/page.tsx
Normal file
23
src/app/equipment-rental/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
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"
|
||||
/>
|
||||
<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" />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user