12 Commits

Author SHA1 Message Date
18acc687f9 Update src/app/terminos-y-condiciones/page.tsx 2026-05-11 13:10:08 +00:00
c056d09453 Add src/app/terminos-y-condiciones/page.tsx 2026-05-11 13:09:41 +00:00
e27b3deb3f Update src/app/page.tsx 2026-05-11 13:09:40 +00:00
4a211825a4 Merge version_10 into main
Merge version_10 into main
2026-05-11 13:03:09 +00:00
9df30fbc6f Update src/app/page.tsx 2026-05-11 13:03:06 +00:00
b022d08b92 Merge version_10 into main
Merge version_10 into main
2026-05-11 12:58:59 +00:00
73b00c1590 Update src/app/page.tsx 2026-05-11 12:58:53 +00:00
cfec8be354 Merge version_9 into main
Merge version_9 into main
2026-05-11 12:55:57 +00:00
717ad8f9a8 Merge version_9 into main
Merge version_9 into main
2026-05-11 03:47:36 +00:00
cc9dc5cde7 Merge version_9 into main
Merge version_9 into main
2026-05-11 03:36:29 +00:00
f6e9c0a65b Merge version_9 into main
Merge version_9 into main
2026-05-11 03:36:02 +00:00
811bc708f0 Merge version_9 into main
Merge version_9 into main
2026-05-11 03:35:28 +00:00
2 changed files with 44 additions and 4 deletions

View File

@@ -34,8 +34,9 @@ export default function HvacPage() {
brandName="Cartagena Pet Delivery"
navItems={[
{ name: "Services", id: "services" },
{ name: "Testimonials", id: "testimonials" },
{ 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}
@@ -178,9 +179,9 @@ export default function HvacPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-10.jpg?_wi=2"
imageAlt="HVAC technician inspecting equipment"
columns={[
{ title: "Services", items: [{ label: "Plan de suscripción", href: "#pricing" }, { label: "Atención personalizada", href: "#services" }] },
{ title: "Compañía", items: [{ label: "Testimonios", href: "#testimonials" }, { label: "FAQ", href: "#faq" }, { label: "Contacto", href: "#contact" }] },
{ title: "Contacto", items: [{ label: "3011471991", href: "tel:3011471991" }] },
{ 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" }, { 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"
/>

View File

@@ -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 (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingInline
brandName="Cartagena Pet Delivery"
navItems={[
{ name: "Home", id: "/" },
{ name: "Terminos y Condiciones", id: "/terminos-y-condiciones" },
]}
button={{ text: "WhatsApp ", href: "https://wa.me/573011471991" }}
animateOnLoad={false}
/>
<LegalSection
layout="page"
title="Términos y Condiciones"
sections={[
{
heading: "Términos y Condiciones Generales", content: { type: "paragraph", text: "Bienvenido a Cartagena Pet Delivery. Al utilizar nuestro servicio, aceptas cumplir con los términos detallados aquí para garantizar la mejor experiencia para tu mascota y tu hogar." }
},
{
heading: "Política de Tratamiento de Datos", content: { type: "paragraph", text: "Valoramos tu privacidad. Tus datos se utilizan exclusivamente para gestionar las entregas de los productos de tu mascota y personalizar nuestras recomendaciones de cuidado." }
},
{
heading: "Cambios y Devoluciones", content: { type: "paragraph", text: "Si algún producto no cumple con lo esperado, comunícate con nosotros por WhatsApp en las primeras 24 horas para gestionar la revisión o cambio correspondiente según el estado del empaque." }
}
]}
/>
</ReactLenis>
</ThemeProvider>
);
}