94 lines
3.6 KiB
TypeScript
94 lines
3.6 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
import ButtonShiftHover from '@/components/button/ButtonShiftHover/ButtonShiftHover';
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="expand-hover"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="soft"
|
|
contentWidth="mediumLarge"
|
|
sizing="medium"
|
|
background="aurora"
|
|
cardStyle="inset"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="normal"
|
|
>
|
|
<ReactLenis root>
|
|
<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 Us", id: "/contact" },
|
|
{ name: "Call Us", id: "tel:630-661-6168" }
|
|
]}
|
|
brandName="Lombard Landscaping by Morris LDC"
|
|
button={{ text: "Contact Us", href: "/contact" }}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<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">
|
|
<FooterSimple
|
|
columns={[
|
|
{
|
|
title: "Services", items: [
|
|
{
|
|
label: "Design & Planning", href: "/services"},
|
|
{
|
|
label: "Installation", href: "/services"},
|
|
{
|
|
label: "Maintenance", href: "/services"},
|
|
{
|
|
label: "Outdoor Living", href: "/#portfolio"},
|
|
],
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{
|
|
label: "About Us", href: "/about"},
|
|
{
|
|
label: "Portfolio", href: "/#portfolio"},
|
|
{
|
|
label: "Testimonials", href: "/#testimonials"},
|
|
{
|
|
label: "FAQ", href: "/#faq"},
|
|
],
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{
|
|
label: "Contact Us", href: "/contact"},
|
|
{
|
|
label: "Get a Quote", href: "/contact"},
|
|
],
|
|
},
|
|
]}
|
|
bottomLeftText="© 2024 Lombard Landscaping by Morris LDC. All rights reserved."
|
|
bottomRightText="Crafted with passion for nature."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |