161 lines
4.7 KiB
TypeScript
161 lines
4.7 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
|
|
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="privacy-policy" data-section="privacy-policy">
|
|
<MetricSplitMediaAbout
|
|
useInvertedBackground={false}
|
|
title="Aviso de Privacidad"
|
|
description="En Oso Outfitters, tu privacidad es nuestra prioridad. Este aviso describe cómo recopilamos, utilizamos y protegemos tu información personal. Toda la información que nos proporcionas se maneja con la más estricta confidencialidad y se utiliza únicamente para procesar tus pedidos, mejorar tu experiencia y cumplir con las obligaciones legales. No compartimos tus datos con terceros sin tu consentimiento."
|
|
tag="Tu Seguridad es Primero"
|
|
imageSrc="http://img.b2bpic.net/free-photo/portrait-male-soldier-military-uniform-with-machine-gun-white-wall_140725-153488.jpg"
|
|
imageAlt="Icono de privacidad o seguridad digital"
|
|
metricsAnimation="none"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterMedia
|
|
imageSrc="http://img.b2bpic.net/free-photo/old-wood-background_74190-7776.jpg?_wi=10"
|
|
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>
|
|
);
|
|
}
|