Merge version_18 into main #59

Merged
bender merged 2 commits from version_18 into main 2026-05-11 21:14:59 +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>
);
}