diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..75bc041 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,150 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; +import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Sparkles, Phone, MessageSquare, MapPin, Clock } from 'lucide-react'; + +export default function ContactPage() { + const commonNavItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + const commonNavButton = { text: "Book Now", href: "tel:+19283873114" }; + + const commonFooterColumns = [ + { items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }, + { items: [{ label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] }, + { items: [{ label: "TikTok", href: "https://www.tiktok.com/es-419/" }, { label: "YouTube", href: "https://www.youtube.com/" }] }, + { items: [{ label: "Facebook", href: "https://www.facebook.com/ddsnidiaolivasandpabelsarabia/?locale=es_LA" }, { label: "Instagram", href: "https://www.instagram.com" }] } + ]; + + return ( + + + + +
+ +
+ +
+ +
+ +
+
+

Find Us Here

+

We are located in Los Algodones, Baja California — just minutes from the Arizona border.

+
+ +
+
+
+ +
+ +
+ + + + + + + + + +
+
+ ); +} \ No newline at end of file