From f9ec8aae0b1d50eb3dd0b1f914d56bcdd7025d74 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 02:08:26 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 150 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 150 insertions(+) create mode 100644 src/app/contact/page.tsx 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 -- 2.49.1