Compare commits
28 Commits
version_9
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| 102c2e5142 | |||
| 88734a9d47 | |||
| b0b719cf50 | |||
| 249f60d6e0 | |||
| 01fc7d8828 | |||
| 13428f1fdd | |||
| b6a1cd8594 | |||
| 8dbd3cdd78 | |||
| fd9b5c7cd0 | |||
| ebf8a152ed | |||
| 87693949ca | |||
| 7e3dbe9d48 | |||
| 2a63eebe87 | |||
| d203c0b2a3 | |||
| fa828deed1 | |||
| 18acc687f9 | |||
| cb025791da | |||
| c056d09453 | |||
| e27b3deb3f | |||
| 4a211825a4 | |||
| 9df30fbc6f | |||
| b022d08b92 | |||
| 73b00c1590 | |||
| cfec8be354 | |||
| 717ad8f9a8 | |||
| cc9dc5cde7 | |||
| f6e9c0a65b | |||
| 811bc708f0 |
@@ -34,7 +34,7 @@ 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" },
|
||||
]}
|
||||
button={{ text: "WhatsApp ", href: "https://wa.me/573011471991" }}
|
||||
@@ -178,11 +178,12 @@ 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" }] },
|
||||
{ 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>
|
||||
|
||||
38
src/app/terminos-y-condiciones/page.tsx
Normal file
38
src/app/terminos-y-condiciones/page.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
"use client";
|
||||
|
||||
import React from "react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import LegalSection from "@/components/legal/LegalSection";
|
||||
|
||||
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"
|
||||
>
|
||||
<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