From e27b3deb3f74bd372a754f2fd0bc0033e9c5cbb1 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 13:09:40 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index fbca452..95954ad 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,6 +36,7 @@ export default function HvacPage() { { name: "Services", id: "services" }, { name: "Parque virtual", id: "hero-carousel" }, { name: "Contact", id: "contact" }, + { name: "Terminos y Condiciones", id: "/terminos-y-condiciones" }, ]} button={{ text: "WhatsApp ", href: "https://wa.me/573011471991" }} animateOnLoad={false} @@ -179,7 +180,7 @@ export default function HvacPage() { imageAlt="HVAC technician inspecting equipment" columns={[ { title: "Servicios", items: [{ label: "Plan de suscripción", href: "#pricing" }, { label: "Atención personalizada", href: "#services" }] }, - { title: "Compañía", items: [{ label: "Parque virtual", href: "#hero-carousel" }, { label: "FAQ", href: "#faq" }, { label: "Contacto", href: "#contact" }] }, + { title: "Compañía", items: [{ label: "Parque virtual", href: "#hero-carousel" }, { label: "FAQ", href: "#faq" }, { label: "Contacto", href: "#contact" }, { label: "Terminos y Condiciones", href: "/terminos-y-condiciones" }] }, { title: "Contacto", items: [{ label: "cartagenapetdelivery@gmail.com", href: "mailto:cartagenapetdelivery@gmail.com" }, { label: "Cartagena, Colombia", href: "#" }, { label: "3011471991", href: "tel:3011471991" }] }, ]} copyrightText="© 2026 | Cartagena Pet Delivery" @@ -188,4 +189,4 @@ export default function HvacPage() { ); -} \ No newline at end of file +} -- 2.49.1 From c056d0945351f255ca72b39d4fbe3d2d3712094c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 13:09:41 +0000 Subject: [PATCH 2/2] Add src/app/terminos-y-condiciones/page.tsx --- src/app/terminos-y-condiciones/page.tsx | 39 +++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/app/terminos-y-condiciones/page.tsx diff --git a/src/app/terminos-y-condiciones/page.tsx b/src/app/terminos-y-condiciones/page.tsx new file mode 100644 index 0000000..8b37550 --- /dev/null +++ b/src/app/terminos-y-condiciones/page.tsx @@ -0,0 +1,39 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import LegalSection from "@/components/legal/LegalSection"; +import ReactLenis from "lenis/react"; + +export default function TermsPage() { + return ( + + + + + + + ); +} \ No newline at end of file -- 2.49.1