Update src/app/contact/page.tsx

This commit is contained in:
2026-05-30 05:26:21 +00:00
parent cc3ac2d6fa
commit 6e1e59d093

View File

@@ -3,8 +3,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import ButtonShiftHover from '@/components/button/ButtonShiftHover/ButtonShiftHover';
export default function ContactPage() {
return (
@@ -24,38 +24,27 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home", id: "/"},
{
name: "About Us", id: "/about"},
{
name: "Services", id: "/services"},
{
name: "Portfolio", id: "/#portfolio"},
{
name: "Testimonials", id: "/#testimonials"},
{
name: "Contact", id: "/contact"}
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/#portfolio" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact Us", id: "/contact" }
]}
brandName="Lombard Landscaping by Morris LDC"
button={{
text: "Get a Free Quote", href: "/contact"}}
button={{ text: "Contact Us", href: "/contact" }}
animateOnLoad={true}
/>
</div>
<div id="contact-content" data-section="contact-content">
<ContactText
useInvertedBackground={false}
background={{
variant: "downward-rays-animated"}}
text="Ready to Transform Your Landscape? Contact Us!"
buttons={[
{
text: "Call for a Free Consultation", href: "tel:630-661-6168"
}
]}
/>
<div id="contact-content" data-section="contact-content" className="flex flex-col items-center justify-center min-h-[50vh] text-center px-4 py-16">
<h1 className="text-4xl md:text-5xl font-bold mb-8">Contact Us Directly</h1>
<p className="text-lg md:text-xl mb-8 max-w-2xl">For immediate assistance, please call us.</p>
<ButtonShiftHover
text="Call 630-661-6168"
href="tel:630-661-6168"
className="max-w-xs px-8 py-4 text-xl"
/>
</div>
<div id="footer" data-section="footer">