16 Commits

Author SHA1 Message Date
42f247068e Add src/app/terms/page.tsx 2026-05-11 21:14:55 +00:00
c3a1734cf0 Update src/app/page.tsx 2026-05-11 21:14:55 +00:00
30247dcc06 Merge version_17 into main
Merge version_17 into main
2026-05-11 21:03:20 +00:00
b29692cb1e Update src/app/page.tsx 2026-05-11 21:03:16 +00:00
fc922dae9a Merge version_17 into main
Merge version_17 into main
2026-05-11 21:02:15 +00:00
e9aad62a55 Update src/app/page.tsx 2026-05-11 21:02:12 +00:00
41f4543a27 Merge version_17 into main
Merge version_17 into main
2026-05-11 20:30:14 +00:00
de73362d8d Update theme colors 2026-05-11 20:30:11 +00:00
5da95d3e85 Merge version_16 into main
Merge version_16 into main
2026-05-11 20:29:36 +00:00
07c716bbe7 Update theme colors 2026-05-11 20:29:33 +00:00
7f3202e4db Merge version_15 into main
Merge version_15 into main
2026-05-11 20:24:53 +00:00
0d14157231 Update theme colors 2026-05-11 20:24:50 +00:00
7e7e8ff645 Merge version_14 into main
Merge version_14 into main
2026-05-11 20:20:36 +00:00
3dcdfec319 Merge version_14 into main
Merge version_14 into main
2026-05-11 20:19:34 +00:00
6dd85f0c3c Merge version_14 into main
Merge version_14 into main
2026-05-11 20:17:23 +00:00
e3162b2bd5 Merge version_13 into main
Merge version_13 into main
2026-05-11 13:45:48 +00:00
3 changed files with 61 additions and 4 deletions

View File

@@ -114,7 +114,7 @@ export default function HvacPage() {
description="La tranquilidad de saber que sus mascotas están bien nutridas"
testimonials={[
{ id: "1", name: "Jheiner Quiñones.", handle: "Dueño de Ares (Pastor Aleman)", testimonial: "El servicio es impecable y siempre llegan a tiempo.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg?_wi=1", imageAlt: "Jheiner Quiñones." },
{ id: "2", name: "Isaac Pedroza. ", handle: "Dueño de Domini (American Bully)", testimonial: "Se siente como si Domini tuviese padrastro porque se encargan de todo.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg?_wi=1", imageAlt: "Isaac Pedroza. " },
{ id: "2", name: "Alejandro Beleño ", handle: "Dueño de Domini (American Bully)", testimonial: "Se siente como si Domini tuviese padrastro porque se encargan de todo.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Czms1yk2v46cvWKFNhilmrsB4C/uploaded-1778533313175-xjla5ykf.jpg", imageAlt: "Alejandro Beleño " },
{ id: "3", name: "Enrique Vélez.", handle: "Dueño de Luna (Corgi) ", testimonial: "Vivo una experiencia super recomendable, excelente servicio ", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.jpg?_wi=1", imageAlt: "Enrique Vélez." },
]}
showRating={true}
@@ -179,7 +179,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: "Terms and Conditions", href: "/terms" }] },
{ 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 +188,4 @@ export default function HvacPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -15,7 +15,7 @@
--foreground: #0f172a;
--primary-cta: #1d4ed8;
--primary-cta-text: #ffffff;
--secondary-cta: #e0e7ff;
--secondary-cta: #E0E7FF;
--secondary-cta-text: #1e3a5f;
--accent: #3b82f6;
--background-accent: #60a5fa;

57
src/app/terms/page.tsx Normal file
View File

@@ -0,0 +1,57 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import LegalSection from "@/components/legal/LegalSection";
export default function TermsPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="aurora"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav" className="bg-[#E7DFD1]">
<NavbarLayoutFloatingInline
brandName="Cartagena Pet Delivery"
navItems={[
{ name: "Services", id: "/" },
{ name: "Parque virtual", id: "/" },
{ name: "Contact", id: "/" },
]}
button={{ text: "WhatsApp ", href: "https://wa.me/573011471991" }}
animateOnLoad={false}
/>
</div>
<div className="py-20 bg-[#E7DFD1]">
<LegalSection
layout="page"
title="Terms and Conditions"
subtitle="Last updated: May 2025"
sections={[
{
heading: "1. Acceptance of Terms", content: { type: "paragraph", text: "By accessing and using our pet delivery services, you agree to comply with and be bound by these terms. If you do not agree to any part of these terms, please do not use our services." }
},
{
heading: "2. Service Provision", content: { type: "list", items: ["We strive to provide timely delivery of pet supplies.", "Availability of products may vary based on market conditions.", "We reserve the right to refuse service for any reason."] }
},
{
heading: "3. User Responsibilities", content: { type: "numbered-list", items: ["Provide accurate delivery information.", "Ensure someone is available to receive the delivery.", "Inform us of any specific delivery instructions."] }
}
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}