Update src/app/contacto/page.tsx

This commit is contained in:
2026-03-06 14:23:39 +00:00
parent e5bc90b068
commit efbf26e786

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: "#" },
],
},
]}