Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-03-06 14:23:44 +00:00
3 changed files with 145 additions and 359 deletions

View File

@@ -1,13 +1,20 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import TextAbout from "@/components/sections/about/TextAbout";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import Link from "next/link";
export default function ContactPage() {
export default function ContactoPage() {
const navItems = [
{ name: "Inicio", id: "/" },
{ name: "Servicios", id: "/servicios" },
{ name: "Trabajos", id: "projects" },
{ name: "Nosotros", id: "about" },
{ name: "Contacto", id: "contact" },
];
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -15,38 +22,32 @@ export default function ContactPage() {
borderRadius="pill"
contentWidth="medium"
sizing="largeSmallSizeMediumTitles"
background="grid"
background="circleGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
{/* Navigation */}
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Inicio", id: "home" },
{ name: "Servicios", id: "services" },
{ name: "Trabajos", id: "projects" },
{ name: "Nosotros", id: "about" },
{ name: "Contacto", id: "contact" },
]}
navItems={navItems}
button={{
text: "Solicitar presupuesto",
href: "/contacto",
}}
text: "Solicitar presupuesto", href: "contact"}}
brandName="Cerramientos Walter"
/>
</div>
{/* Contact Section */}
<div id="contact" data-section="contact">
<ContactSplit
tag="Contacto"
title="Solicita tu presupuesto"
description="Completa el formulario o contactanos directamente por WhatsApp. Te responderemos en menos de 24 horas."
background={{ variant: "grid" }}
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/portrait-female-artist-outdoors_23-2148014123.jpg?_wi=2"
imageAlt="Instalación profesional"
imageSrc="http://img.b2bpic.net/free-photo/portrait-female-artist-outdoors_23-2148014123.jpg"
imageAlt="Consulta de servicios"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="tu@email.com"
@@ -55,104 +56,40 @@ export default function ContactPage() {
/>
</div>
<div id="contact-info" data-section="contact-info">
<TextAbout
tag="Información de Contacto"
title="Contáctanos directamente: Teléfono 011 3949-3469, WhatsApp disponible, Av. Juan B. Justo 6612 CABA, Lunes a Viernes 9-17hs"
useInvertedBackground={false}
/>
</div>
<div id="faq" data-section="faq">
<TextAbout
tag="Preguntas Frecuentes"
title="¿Tienes dudas? Respondemos consultas sobre presupuestos, materiales, instalación, garantía y plazos de entrega. Contactanos sin compromiso para conocer más detalles."
useInvertedBackground={false}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Cerramientos Walter"
columns={[
{
title: "Navegación",
items: [
{
label: "Inicio",
href: "/",
},
{
label: "Servicios",
href: "/servicios",
},
{
label: "Trabajos",
href: "/trabajos",
},
{
label: "Nosotros",
href: "/nosotros",
},
title: "Navegación", items: [
{ label: "Inicio", href: "/" },
{ label: "Servicios", href: "/servicios" },
{ label: "Trabajos", href: "projects" },
{ label: "Nosotros", href: "about" },
],
},
{
title: "Servicios",
items: [
{
label: "Cerramientos",
href: "/servicios#cerramientos",
},
{
label: "Ventanas",
href: "/servicios#ventanas",
},
{
label: "Rejas",
href: "/servicios#rejas",
},
{
label: "Mosquiteros",
href: "/servicios#mosquiteros",
},
title: "Servicios", items: [
{ label: "Cerramientos", href: "/servicios" },
{ label: "Ventanas", href: "/servicios" },
{ label: "Rejas", href: "/servicios" },
{ label: "Mosquiteros", href: "/servicios" },
],
},
{
title: "Contacto",
items: [
{
label: "Teléfono: 011 3949-3469",
href: "tel:+541139493469",
},
{
label: "WhatsApp",
href: "https://wa.me/541139493469",
},
{
label: "Av. Juan B. Justo 6612, CABA",
href: "#",
},
{
label: "Lunes a Viernes 9-17hs",
href: "#",
},
title: "Contacto", items: [
{ label: "Teléfono: 011 3949-3469", href: "tel:+541139493469" },
{ label: "WhatsApp", href: "https://wa.me/541139493469" },
{ label: "Av. Juan B. Justo 6612, CABA", href: "#" },
{ label: "Lunes a Viernes 9-17hs", href: "#" },
],
},
{
title: "Legal",
items: [
{
label: "Política de Privacidad",
href: "#",
},
{
label: "Términos de Servicio",
href: "#",
},
{
label: "Garantía",
href: "#",
},
title: "Legal", items: [
{ label: "Política de Privacidad", href: "#" },
{ label: "Términos de Servicio", href: "#" },
{ label: "Garantía", href: "#" },
],
},
]}

View File

@@ -1,5 +1,6 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
@@ -8,10 +9,18 @@ import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwe
import TextAbout from "@/components/sections/about/TextAbout";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import Link from "next/link";
export default function HomePage() {
const navItems = [
{ name: "Inicio", id: "/" },
{ name: "Servicios", id: "/servicios" },
{ name: "Trabajos", id: "projects" },
{ name: "Nosotros", id: "about" },
{ name: "Contacto", id: "contact" },
];
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -19,53 +28,42 @@ export default function HomePage() {
borderRadius="pill"
contentWidth="medium"
sizing="largeSmallSizeMediumTitles"
background="grid"
background="circleGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
{/* Navigation */}
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Inicio", id: "home" },
{ name: "Servicios", id: "services" },
{ name: "Trabajos", id: "projects" },
{ name: "Nosotros", id: "about" },
{ name: "Contacto", id: "contact" },
]}
navItems={navItems}
button={{
text: "Solicitar presupuesto",
href: "/contacto",
}}
text: "Solicitar presupuesto", href: "contact"}}
brandName="Cerramientos Walter"
/>
</div>
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Cerramientos Walter"
description="Especialistas en ventanas de aluminio, cerramientos, rejas, mosquiteros y soluciones a medida para hogares, locales y proyectos personalizados. Trabajos prolijos con materiales de calidad y presupuestos claros."
buttons={[
{
text: "Solicitar presupuesto",
href: "/contacto",
},
{
text: "Hablar por WhatsApp",
href: "https://wa.me/541139493469",
},
{ text: "Solicitar presupuesto", href: "#contact" },
{ text: "Hablar por WhatsApp", href: "https://wa.me/541139493469" },
]}
buttonAnimation="slide-up"
background={{ variant: "grid" }}
background={{ variant: "animated-grid" }}
imageSrc="http://img.b2bpic.net/free-photo/stylish-scandinavian-living-room-with-design-mint-sofa-furnitures-mock-up-poster-map-plants-eleg_1258-152149.jpg"
imageAlt="Ventanas de aluminio premium"
imageAlt="modern aluminum windows installation residential"
mediaAnimation="slide-up"
frameStyle="card"
ariaLabel="Cerramientos Walter - Inicio"
/>
</div>
{/* Social Proof Section */}
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Confianza y Reputación"
@@ -74,19 +72,14 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
"⭐ 4.8 / 5.0",
"123+ Clientes",
"CABA",
"Instalación Profesional",
"Garantía Incluida",
"Respuesta Rápida",
]}
"⭐ 4.8 / 5.0", "123+ Clientes", "CABA", "Instalación Profesional", "Garantía Incluida", "Respuesta Rápida"]}
speed={40}
showCard={true}
ariaLabel="Social proof y reputación"
/>
</div>
{/* Services Section */}
<div id="services" data-section="services">
<FeatureCardTwentyThree
title="Servicios Principales"
@@ -97,51 +90,28 @@ export default function HomePage() {
useInvertedBackground={false}
features={[
{
id: "1",
title: "Cerramientos de Aluminio",
tags: ["Moderno", "Duradero"],
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-man_23-2151020295.jpg?_wi=1",
imageAlt: "Cerramientos de aluminio",
},
id: "1", title: "Cerramientos de Aluminio", tags: ["Moderno", "Duradero"],
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-man_23-2151020295.jpg", imageAlt: "aluminum enclosure glass doors modern interior"},
{
id: "2",
title: "Ventanas de Aluminio",
tags: ["Aislante", "Elegante"],
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-daughter-is-engaged-gymnastics_1157-31635.jpg?_wi=1",
imageAlt: "Ventanas de aluminio",
},
id: "2", title: "Ventanas de Aluminio", tags: ["Aislante", "Elegante"],
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-daughter-is-engaged-gymnastics_1157-31635.jpg", imageAlt: "aluminum window installation professional clean"},
{
id: "3",
title: "Rejas de Seguridad",
tags: ["Protección", "Diseño"],
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-leaning-container_23-2148259421.jpg?_wi=1",
imageAlt: "Rejas de seguridad",
},
id: "3", title: "Rejas de Seguridad", tags: ["Protección", "Diseño"],
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-leaning-container_23-2148259421.jpg", imageAlt: "security aluminum grille gate installation modern"},
{
id: "4",
title: "Mosquiteros",
tags: ["Practicidad", "Calidad"],
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-sitting-balcony-reading-newspaper_23-2148161262.jpg",
imageAlt: "Mosquiteros",
},
id: "4", title: "Mosquiteros", tags: ["Practicidad", "Calidad"],
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-sitting-balcony-reading-newspaper_23-2148161262.jpg", imageAlt: "mosquito net window screen aluminum frame modern"},
{
id: "5",
title: "Puertas Exteriores",
tags: ["Resistentes", "Premium"],
imageSrc: "http://img.b2bpic.net/free-photo/good-morning-woman-blanket-lady-terrace_1157-43453.jpg",
imageAlt: "Puertas exteriores",
},
id: "5", title: "Puertas Exteriores", tags: ["Resistentes", "Premium"],
imageSrc: "http://img.b2bpic.net/free-photo/good-morning-woman-blanket-lady-terrace_1157-43453.jpg", imageAlt: "aluminum exterior door frame installation modern"},
{
id: "6",
title: "Estructuras Metálicas",
tags: ["Personalizadas", "Robustas"],
imageSrc: "http://img.b2bpic.net/free-photo/metallic-railing-sunny-day_23-2148269798.jpg",
imageAlt: "Estructuras metálicas",
},
id: "6", title: "Estructuras Metálicas", tags: ["Personalizadas", "Robustas"],
imageSrc: "http://img.b2bpic.net/free-photo/metallic-railing-sunny-day_23-2148269798.jpg", imageAlt: "metal structure frame installation modern architecture"},
]}
/>
</div>
{/* Why Us Section */}
<div id="why-us" data-section="why-us">
<TextAbout
tag="Ventajas"
@@ -150,6 +120,7 @@ export default function HomePage() {
/>
</div>
{/* Testimonials Section */}
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="Testimonios de Clientes"
@@ -158,63 +129,22 @@ export default function HomePage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
title: "Excelente trabajo y muy profesional",
quote: "Instalaron las ventanas en mi casa con un trabajo impecable. El equipo fue puntual, prolijo y muy profesional. Realmente recomendable.",
name: "Patricia Gómez",
role: "Propietaria, Caballito",
imageSrc: "http://img.b2bpic.net/free-photo/content-caucasian-businesswoman-standing-with-folded-hands-portrait-confident-adult-beautiful-female-office-employer-black-blouse-posing-work-business-company-management-concept_74855-6952.jpg?_wi=1",
imageAlt: "Patricia Gómez",
},
id: "1", title: "Excelente trabajo y muy profesional", quote: "Instalaron las ventanas en mi casa con un trabajo impecable. El equipo fue puntual, prolijo y muy profesional. Realmente recomendable.", name: "Patricia Gómez", role: "Propietaria, Caballito", imageSrc: "http://img.b2bpic.net/free-photo/content-caucasian-businesswoman-standing-with-folded-hands-portrait-confident-adult-beautiful-female-office-employer-black-blouse-posing-work-business-company-management-concept_74855-6952.jpg", imageAlt: "professional woman portrait business headshot smile"},
{
id: "2",
title: "Respuesta rápida y presupuesto honesto",
quote: "Respondieron mis consultas por WhatsApp rápidamente. El presupuesto fue claro y cumplieron exactamente con lo pactado. Muy satisfecho.",
name: "Roberto Martínez",
role: "Comerciante, San Telmo",
imageSrc: "http://img.b2bpic.net/free-photo/man-shirt-tie-standing_171337-10746.jpg?_wi=1",
imageAlt: "Roberto Martínez",
},
id: "2", title: "Respuesta rápida y presupuesto honesto", quote: "Respondieron mis consultas por WhatsApp rápidamente. El presupuesto fue claro y cumplieron exactamente con lo pactado. Muy satisfecho.", name: "Roberto Martínez", role: "Comerciante, San Telmo", imageSrc: "http://img.b2bpic.net/free-photo/man-shirt-tie-standing_171337-10746.jpg", imageAlt: "professional man portrait business headshot smile"},
{
id: "3",
title: "Materiales de excelente calidad",
quote: "Hace 3 años instalaron mis rejas y mosquiteros. Los materiales de aluminio se ven como nuevos. Durabilidad garantizada.",
name: "María Elena Ruiz",
role: "Ama de casa, Belgrano",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-412.jpg?_wi=1",
imageAlt: "María Elena Ruiz",
},
id: "3", title: "Materiales de excelente calidad", quote: "Hace 3 años instalaron mis rejas y mosquiteros. Los materiales de aluminio se ven como nuevos. Durabilidad garantizada.", name: "María Elena Ruiz", role: "Ama de casa, Belgrano", imageSrc: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-412.jpg", imageAlt: "senior woman portrait older adult smile friendly"},
{
id: "4",
title: "Soluciones a medida perfectas",
quote: "Tenía un espacio complicado. Walter propuso una solución perfecta. Trabajo totalmente personalizado y con acabado impecable.",
name: "Carlos Fernández",
role: "Propietario, Villa Crespo",
imageSrc: "http://img.b2bpic.net/free-photo/bearded-grey-haired-elderly-man-wearing-formal-suit_273609-5591.jpg?_wi=1",
imageAlt: "Carlos Fernández",
},
id: "4", title: "Soluciones a medida perfectas", quote: "Tenía un espacio complicado. Walter propuso una solución perfecta. Trabajo totalmente personalizado y con acabado impecable.", name: "Carlos Fernández", role: "Propietario, Villa Crespo", imageSrc: "http://img.b2bpic.net/free-photo/bearded-grey-haired-elderly-man-wearing-formal-suit_273609-5591.jpg", imageAlt: "professional man portrait middle age smile confident"},
{
id: "5",
title: "Instalación limpia y profesional",
quote: "Más allá del producto, lo que me gustó fue lo limpios que dejaron todo. Sin polvo, sin desorden. Muy recomendable.",
name: "Lucía Sánchez",
role: "Propietaria, Palermo",
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-posing-street_23-2148213468.jpg?_wi=1",
imageAlt: "Lucía Sánchez",
},
id: "5", title: "Instalación limpia y profesional", quote: "Más allá del producto, lo que me gustó fue lo limpios que dejaron todo. Sin polvo, sin desorden. Muy recomendable.", name: "Lucía Sánchez", role: "Propietaria, Palermo", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-posing-street_23-2148213468.jpg", imageAlt: "professional woman portrait adult smile friendly"},
{
id: "6",
title: "Mejor que otras opciones del mercado",
quote: "Cotizamos en varios lugares. Cerramientos Walter ofreció la mejor relación calidad-precio y cumplieron perfectamente.",
name: "Juan Pérez",
role: "Propietario, Flores",
imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2623.jpg?_wi=1",
imageAlt: "Juan Pérez",
},
id: "6", title: "Mejor que otras opciones del mercado", quote: "Cotizamos en varios lugares. Cerramientos Walter ofreció la mejor relación calidad-precio y cumplieron perfectamente.", name: "Juan Pérez", role: "Propietario, Flores", imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2623.jpg", imageAlt: "professional man portrait adult serious confident"},
]}
/>
</div>
{/* Projects Section */}
<div id="projects" data-section="projects">
<ProductCardOne
title="Proyectos Realizados"
@@ -225,151 +155,86 @@ export default function HomePage() {
gridVariant="bento-grid"
products={[
{
id: "1",
name: "Cerramientos Integral - Departamento",
price: "Consultar",
imageSrc: "http://img.b2bpic.net/free-photo/male-with-red-shirt-making-window-with-industrial-tools_181624-50175.jpg?_wi=1",
imageAlt: "Cerramientos Integral - Departamento",
},
id: "1", name: "Cerramientos Integral - Departamento", price: "Consultar", imageSrc: "http://img.b2bpic.net/free-photo/male-with-red-shirt-making-window-with-industrial-tools_181624-50175.jpg", imageAlt: "completed aluminum enclosure apartment installation"},
{
id: "2",
name: "Ventanas Aluminio - Casa",
price: "Consultar",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-modern-glass-business-center_23-2148140040.jpg?_wi=1",
imageAlt: "Ventanas Aluminio - Casa",
},
id: "2", name: "Ventanas Aluminio - Casa", price: "Consultar", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-modern-glass-business-center_23-2148140040.jpg", imageAlt: "installed aluminum windows residential house exterior"},
{
id: "3",
name: "Rejas de Seguridad - Local",
price: "Consultar",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-wearing-face-mask_23-2148730281.jpg?_wi=1",
imageAlt: "Rejas de Seguridad - Local",
},
id: "3", name: "Rejas de Seguridad - Local", price: "Consultar", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-woman-wearing-face-mask_23-2148730281.jpg", imageAlt: "installed security grille aluminum storefront professional"},
{
id: "4",
name: "Mosquiteros Deslizantes",
price: "Consultar",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-video-conferening_23-2148738280.jpg?_wi=1",
imageAlt: "Mosquiteros Deslizantes",
},
id: "4", name: "Mosquiteros Deslizantes", price: "Consultar", imageSrc: "http://img.b2bpic.net/free-photo/businessman-video-conferening_23-2148738280.jpg", imageAlt: "installed window screen mesh aluminum contemporary"},
{
id: "5",
name: "Puerta Exterior Aluminio",
price: "Consultar",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-blue-lake-captured-from-inside-villa_181624-10734.jpg?_wi=1",
imageAlt: "Puerta Exterior Aluminio",
},
id: "5", name: "Puerta Exterior Aluminio", price: "Consultar", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-blue-lake-captured-from-inside-villa_181624-10734.jpg", imageAlt: "installed aluminum exterior door residential finished"},
{
id: "6",
name: "Estructura Metálica Personalizada",
price: "Consultar",
imageSrc: "http://img.b2bpic.net/free-photo/modern-glass-architecture_53876-138126.jpg?_wi=1",
imageAlt: "Estructura Metálica Personalizada",
},
id: "6", name: "Estructura Metálica Personalizada", price: "Consultar", imageSrc: "http://img.b2bpic.net/free-photo/modern-glass-architecture_53876-138126.jpg", imageAlt: "custom metal structure installation architectural completed"},
]}
/>
</div>
{/* Final CTA Section */}
<div id="final-cta" data-section="final-cta">
<TextAbout
tag="Próximo paso"
title="¿Listo para tu proyecto? Solicita tu presupuesto sin compromiso hoy mismo"
buttons={[
{
text: "Solicitar presupuesto",
href: "/contacto",
},
{
text: "Contactanos",
href: "https://wa.me/541139493469",
},
{ text: "Solicitar presupuesto", href: "#contact" },
{ text: "Contactanos", href: "https://wa.me/541139493469" },
]}
useInvertedBackground={false}
/>
</div>
{/* Contact Section */}
<div id="contact" data-section="contact">
<ContactSplit
tag="Contacto"
title="Solicita tu presupuesto"
description="Completa el formulario o contactanos directamente por WhatsApp. Te responderemos en menos de 24 horas."
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/portrait-female-artist-outdoors_23-2148014123.jpg"
imageAlt="professional installing aluminum window clean installation"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="tu@email.com"
buttonText="Enviar"
termsText="Respetamos tu privacidad. Nos pondremos en contacto con tu presupuesto."
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Cerramientos Walter"
columns={[
{
title: "Navegación",
items: [
{
label: "Inicio",
href: "/",
},
{
label: "Servicios",
href: "/servicios",
},
{
label: "Trabajos",
href: "/trabajos",
},
{
label: "Nosotros",
href: "/nosotros",
},
title: "Navegación", items: [
{ label: "Inicio", href: "/" },
{ label: "Servicios", href: "/servicios" },
{ label: "Trabajos", href: "/trabajos" },
{ label: "Nosotros", href: "/nosotros" },
],
},
{
title: "Servicios",
items: [
{
label: "Cerramientos",
href: "/servicios#cerramientos",
},
{
label: "Ventanas",
href: "/servicios#ventanas",
},
{
label: "Rejas",
href: "/servicios#rejas",
},
{
label: "Mosquiteros",
href: "/servicios#mosquiteros",
},
title: "Servicios", items: [
{ label: "Cerramientos", href: "/servicios#cerramientos" },
{ label: "Ventanas", href: "/servicios#ventanas" },
{ label: "Rejas", href: "/servicios#rejas" },
{ label: "Mosquiteros", href: "/servicios#mosquiteros" },
],
},
{
title: "Contacto",
items: [
{
label: "Teléfono: 011 3949-3469",
href: "tel:+541139493469",
},
{
label: "WhatsApp",
href: "https://wa.me/541139493469",
},
{
label: "Av. Juan B. Justo 6612, CABA",
href: "#",
},
{
label: "Lunes a Viernes 9-17hs",
href: "#",
},
title: "Contacto", items: [
{ label: "Teléfono: 011 3949-3469", href: "tel:+541139493469" },
{ label: "WhatsApp", href: "https://wa.me/541139493469" },
{ label: "Av. Juan B. Justo 6612, CABA", href: "#" },
{ label: "Lunes a Viernes 9-17hs", href: "#" },
],
},
{
title: "Legal",
items: [
{
label: "Política de Privacidad",
href: "#",
},
{
label: "Términos de Servicio",
href: "#",
},
{
label: "Garantía",
href: "#",
},
title: "Legal", items: [
{ label: "Política de Privacidad", href: "#" },
{ label: "Términos de Servicio", href: "#" },
{ label: "Garantía", href: "#" },
],
},
]}

View File

@@ -24,7 +24,7 @@ export default function ServicesPage() {
borderRadius="pill"
contentWidth="medium"
sizing="largeSmallSizeMediumTitles"
background="grid"
background="circleGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
@@ -78,8 +78,7 @@ export default function ServicesPage() {
tag="Solicita Presupuesto"
title="Cotiza tu proyecto ahora"
description="Envíanos los detalles de lo que necesitas y te haremos llegar un presupuesto detallado sin compromiso en 24 horas."
background={{
variant: "grid"}}
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/portrait-female-artist-outdoors_23-2148014123.jpg"
imageAlt="Consulta de servicios"
@@ -98,48 +97,33 @@ export default function ServicesPage() {
columns={[
{
title: "Navegación", items: [
{
label: "Inicio", href: "/"},
{
label: "Servicios", href: "/servicios"},
{
label: "Trabajos", href: "projects"},
{
label: "Nosotros", href: "about"},
{ label: "Inicio", href: "/" },
{ label: "Servicios", href: "/servicios" },
{ label: "Trabajos", href: "projects" },
{ label: "Nosotros", href: "about" },
],
},
{
title: "Servicios", items: [
{
label: "Cerramientos", href: "/servicios"},
{
label: "Ventanas", href: "/servicios"},
{
label: "Rejas", href: "/servicios"},
{
label: "Mosquiteros", href: "/servicios"},
{ label: "Cerramientos", href: "/servicios" },
{ label: "Ventanas", href: "/servicios" },
{ label: "Rejas", href: "/servicios" },
{ label: "Mosquiteros", href: "/servicios" },
],
},
{
title: "Contacto", items: [
{
label: "Teléfono: 011 3949-3469", href: "tel:+541139493469"},
{
label: "WhatsApp", href: "https://wa.me/541139493469"},
{
label: "Av. Juan B. Justo 6612, CABA", href: "#"},
{
label: "Lunes a Viernes 9-17hs", href: "#"},
{ label: "Teléfono: 011 3949-3469", href: "tel:+541139493469" },
{ label: "WhatsApp", href: "https://wa.me/541139493469" },
{ label: "Av. Juan B. Justo 6612, CABA", href: "#" },
{ label: "Lunes a Viernes 9-17hs", href: "#" },
],
},
{
title: "Legal", items: [
{
label: "Política de Privacidad", href: "#"},
{
label: "Términos de Servicio", href: "#"},
{
label: "Garantía", href: "#"},
{ label: "Política de Privacidad", href: "#" },
{ label: "Términos de Servicio", href: "#" },
{ label: "Garantía", href: "#" },
],
},
]}