Compare commits
16 Commits
version_11
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| 102c2e5142 | |||
| 88734a9d47 | |||
| b0b719cf50 | |||
| 249f60d6e0 | |||
| 01fc7d8828 | |||
| 13428f1fdd | |||
| b6a1cd8594 | |||
| 8dbd3cdd78 | |||
| fd9b5c7cd0 | |||
| ebf8a152ed | |||
| 87693949ca | |||
| 7e3dbe9d48 | |||
| 2a63eebe87 | |||
| d203c0b2a3 | |||
| fa828deed1 | |||
| cb025791da |
@@ -36,7 +36,6 @@ 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}
|
||||
@@ -180,10 +179,11 @@ 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" }, { label: "Terminos y Condiciones", href: "/terminos-y-condiciones" }] },
|
||||
{ title: "Compañía", items: [{ label: "Parque virtual", href: "#hero-carousel" }, { label: "FAQ", href: "#faq" }, { label: "Contacto", href: "#contact" }] },
|
||||
{ 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"
|
||||
onPrivacyClick={() => window.open("/terminos-y-condiciones", "_blank", "noopener,noreferrer")}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -1,39 +1,38 @@
|
||||
"use client";
|
||||
|
||||
import React from "react";
|
||||
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() {
|
||||
export default function TermsAndConditionsPage() {
|
||||
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
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Términos y Condiciones"
|
||||
sections={[
|
||||
{
|
||||
heading: "Términos y condiciones", content: { type: "paragraph", text: "Bienvenido a Cartagena Pet Delivery. Al utilizar nuestros servicios, aceptas cumplir con los siguientes términos. Nos reservamos el derecho de modificar estos términos en cualquier momento." }
|
||||
},
|
||||
{
|
||||
heading: "Política de tratamiento de datos", content: { type: "paragraph", text: "Tu privacidad es nuestra prioridad. Recopilamos datos estrictamente necesarios para la gestión de entregas y atención personalizada, cumpliendo con la normativa vigente de protección de datos." }
|
||||
},
|
||||
{
|
||||
heading: "Cambios y devoluciones", content: { type: "paragraph", text: "Garantizamos la calidad de nuestros productos. Si el producto recibido presenta alguna novedad, tienes 24 horas para contactarnos y gestionar el cambio correspondiente de manera ágil." }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user