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 +} 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