11 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
fc922dae9a Merge version_17 into main
Merge version_17 into main
2026-05-11 21:02:15 +00:00
41f4543a27 Merge version_17 into main
Merge version_17 into main
2026-05-11 20:30:14 +00:00
5da95d3e85 Merge version_16 into main
Merge version_16 into main
2026-05-11 20:29:36 +00:00
7f3202e4db Merge version_15 into main
Merge version_15 into main
2026-05-11 20:24:53 +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
2 changed files with 59 additions and 2 deletions

View File

@@ -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>
);
}
}

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>
);
}