Update src/app/accesorios/page.tsx

This commit is contained in:
2026-04-03 15:23:43 +00:00
parent 9d16f4947a
commit e63a3aacf2

View File

@@ -7,7 +7,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
export default function LandingPage() {
export default function Page() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -25,22 +25,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Bicicletas",
id: "/catalogo",
},
{
name: "Accesorios",
id: "/accesorios",
},
{
name: "Protecciones",
id: "/protecciones",
},
{
name: "Ropa",
id: "/ropa",
},
{ name: "Inicio", id: "/" },
{ name: "Bicicletas", id: "/catalogo" },
{ name: "Accesorios", id: "/accesorios" },
{ name: "Protecciones", id: "/protecciones" },
{ name: "Ropa", id: "/ropa" },
]}
brandName="bcollctive"
/>
@@ -50,20 +39,8 @@ export default function LandingPage() {
<ProductCatalog
layout="page"
products={[
{
id: "a1",
name: "Casco Pro",
price: "$2,500",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cyclist-riding-bicycle-nature_23-2150815941.jpg?_wi=4",
},
{
id: "a2",
name: "Luces LED",
price: "$800",
rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/bike-creation-workshop_23-2148866650.jpg?_wi=5",
},
{ id: "a1", name: "Casco Pro", price: "$2,500", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cyclist-riding-bicycle-nature_23-2150815941.jpg?_wi=4" },
{ id: "a2", name: "Luces LED", price: "$800", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/bike-creation-workshop_23-2148866650.jpg?_wi=5" },
]}
/>
</div>
@@ -71,18 +48,11 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Tienda"
title="Equípate bien"
description="Todo lo necesario para rodar seguro."
buttons={[
{
text: "Ver catálogo",
href: "/accesorios",
},
]}
buttons={[{ text: "Ver catálogo", href: "/accesorios" }]}
/>
</div>
@@ -90,32 +60,8 @@ export default function LandingPage() {
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/bike-creation-workshop_23-2148866650.jpg?_wi=6"
columns={[
{
title: "Tienda",
items: [
{
label: "Bicicletas",
href: "/catalogo",
},
{
label: "Ropa",
href: "/ropa",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacidad",
href: "#",
},
{
label: "Términos",
href: "#",
},
],
},
{ title: "Tienda", items: [{ label: "Bicicletas", href: "/catalogo" }, { label: "Ropa", href: "/ropa" }] },
{ title: "Legal", items: [{ label: "Privacidad", href: "#" }, { label: "Términos", href: "#" }] },
]}
/>
</div>