Initial commit
This commit is contained in:
182
src/app/contacto/page.tsx
Normal file
182
src/app/contacto/page.tsx
Normal file
@@ -0,0 +1,182 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="blurBottom"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Tienda",
|
||||
id: "/tienda",
|
||||
},
|
||||
{
|
||||
name: "Mi Cuenta",
|
||||
id: "/mi-cuenta",
|
||||
},
|
||||
{
|
||||
name: "Nosotros",
|
||||
id: "/nosotros",
|
||||
},
|
||||
{
|
||||
name: "Blog",
|
||||
id: "/blog",
|
||||
},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "/contacto",
|
||||
},
|
||||
]}
|
||||
button={{
|
||||
text: "Ver Carrito",
|
||||
href: "/carrito",
|
||||
}}
|
||||
topBarButton={{
|
||||
text: "Iniciar Sesión",
|
||||
href: "/mi-cuenta",
|
||||
}}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/vintage-monochrome-serious-russian-bear-traditional-ushanka-hat_225004-600.jpg"
|
||||
logoAlt="Oso Outfitters Logo"
|
||||
brandName="Oso Outfitters"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Contáctanos"
|
||||
title="Estamos Listos para Ayudarte"
|
||||
description="Envíanos un mensaje, llámanos o visítanos. Tu aventura en el tiro deportivo comienza aquí. \n\nWhatsApp: +52 55 1234 5678\nHorarios de Atención: L-V 9am-6pm, S 10am-2pm\nDirección: Av. Principal #123, Col. Centro, Ciudad de México."
|
||||
inputPlaceholder="Tu Email"
|
||||
buttonText="Enviar Mensaje"
|
||||
termsText="Al enviar este formulario, aceptas nuestra Política de Privacidad."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-presence" data-section="social-presence">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Instagram",
|
||||
"Facebook",
|
||||
"TikTok",
|
||||
"YouTube",
|
||||
"Twitter",
|
||||
]}
|
||||
title="Síguenos en Redes"
|
||||
description="Mantente al día con las últimas novedades, promociones y eventos. ¡Únete a nuestra comunidad!"
|
||||
speed={50}
|
||||
showCard={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/old-wood-background_74190-7776.jpg"
|
||||
imageAlt="Fondo robusto de bosque oscuro para footer"
|
||||
logoSrc="http://img.b2bpic.net/free-vector/vintage-monochrome-serious-russian-bear-traditional-ushanka-hat_225004-600.jpg"
|
||||
logoAlt="Oso Outfitters Logo"
|
||||
logoText="Oso Outfitters"
|
||||
columns={[
|
||||
{
|
||||
title: "Comprar",
|
||||
items: [
|
||||
{
|
||||
label: "Armas Largas",
|
||||
href: "/tienda?category=armas-largas",
|
||||
},
|
||||
{
|
||||
label: "Armas Cortas",
|
||||
href: "/tienda?category=armas-cortas",
|
||||
},
|
||||
{
|
||||
label: "Municiones",
|
||||
href: "/tienda?category=municiones",
|
||||
},
|
||||
{
|
||||
label: "Accesorios",
|
||||
href: "/tienda?category=accesorios",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Oso Outfitters",
|
||||
items: [
|
||||
{
|
||||
label: "Nosotros",
|
||||
href: "/nosotros",
|
||||
},
|
||||
{
|
||||
label: "Mi Cuenta",
|
||||
href: "/mi-cuenta",
|
||||
},
|
||||
{
|
||||
label: "Blog",
|
||||
href: "/blog",
|
||||
},
|
||||
{
|
||||
label: "Contacto",
|
||||
href: "/contacto",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Ayuda",
|
||||
items: [
|
||||
{
|
||||
label: "Preguntas Frecuentes",
|
||||
href: "/preguntas-frecuentes",
|
||||
},
|
||||
{
|
||||
label: "Políticas de Envío",
|
||||
href: "/politicas-envio",
|
||||
},
|
||||
{
|
||||
label: "Políticas de Devolución",
|
||||
href: "/politicas-devolucion",
|
||||
},
|
||||
{
|
||||
label: "Aviso de Privacidad",
|
||||
href: "/aviso-privacidad",
|
||||
},
|
||||
{
|
||||
label: "Términos y Condiciones",
|
||||
href: "/terminos-condiciones",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Oso Outfitters. Todos los derechos reservados."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user