Add src/app/catalog/accessories/page.tsx
This commit is contained in:
33
src/app/catalog/accessories/page.tsx
Normal file
33
src/app/catalog/accessories/page.tsx
Normal file
@@ -0,0 +1,33 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
|
||||
export default function AccessoriesPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Главная", id: "/" },
|
||||
{ name: "Каталог", id: "/catalog" },
|
||||
{ name: "Новинки", id: "/catalog/new" },
|
||||
{ name: "Кроссовки", id: "/catalog/sneakers" },
|
||||
{ name: "Одежда", id: "/catalog/clothes" },
|
||||
{ name: "Аксессуары", id: "/catalog/accessories" },
|
||||
]}
|
||||
brandName="DARK BOX"
|
||||
/>
|
||||
<div className="pt-32">
|
||||
<ProductCardTwo
|
||||
title="Аксессуары"
|
||||
description="Дополнения к образу."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
products={[]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user