diff --git a/src/app/page.tsx b/src/app/page.tsx index eecce7e..afb5f69 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: "Terms", id: "/terms-of-service" }, ]} 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: "Términos", href: "/terms-of-service" }] }, { 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" diff --git a/src/app/terms-of-service/page.tsx b/src/app/terms-of-service/page.tsx new file mode 100644 index 0000000..47df54d --- /dev/null +++ b/src/app/terms-of-service/page.tsx @@ -0,0 +1,59 @@ +"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