From 180760fcc518c550fb03b2a713006a4694f80a18 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 14 Apr 2026 00:20:55 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 66 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 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..ad4ea15 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,66 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 243ff69d6fdab65c67e6a16e954019f1c65656ea Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 14 Apr 2026 00:20:56 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4564f68..ba6cd7d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,7 +13,7 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import { Sparkles, Star, MapPin, Phone, Clock, Smile } from 'lucide-react'; +import { Sparkles, Star, Smile } from 'lucide-react'; export default function LandingPage() { return ( @@ -53,7 +53,7 @@ export default function LandingPage() { background={{ variant: "plain" }} buttons={[ { text: "Reservar cita", href: "https://wa.me/34662224408" }, - { text: "Ver tratamientos", href: "#products" } + { text: "Ver tratamientos", href: "/products" } ]} buttonAnimation="slide-up" carouselItems={[ -- 2.49.1