Add src/app/computer-parts/page.tsx

This commit is contained in:
2026-04-17 05:01:32 +00:00
parent 0100151079
commit 23d38f05e7

View File

@@ -0,0 +1,38 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
import FooterBase from "@/components/sections/footer/FooterBase";
import ReactLenis from "lenis/react";
export default function ComputerPartsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "Mobile Phones", id: "/mobile-phones" },
{ name: "Laptops", id: "/laptops" },
{ name: "Computer Parts", id: "/computer-parts" },
{ name: "Accessories", id: "/accessories" },
{ name: "Contact", id: "contact" },
]}
/>
<div className="pt-32 pb-20">
<ProductCatalog
layout="page"
products={[]}
/>
</div>
<FooterBase
logoText="Webild"
columns={[]}
/>
</ReactLenis>
</ThemeProvider>
);
}