Update src/app/drilling-services/page.tsx
This commit is contained in:
@@ -4,21 +4,34 @@ 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";
|
||||
import { Award } from "lucide-react";
|
||||
|
||||
export default function DrillingServicesPage() {
|
||||
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">Drilling Services</h1>
|
||||
<p className="text-lg mb-8">We provide professional geological drilling and site exploration services for large-scale mining operations.</p>
|
||||
</div>
|
||||
<div id="contact"><ContactSplit title="Inquire About Drilling" description="Submit your site requirements below for a consultation." 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 Drilling"
|
||||
description="Submit your site requirements below for a consultation."
|
||||
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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user