From ec7baa791d3bce487e8bfe1215cc3f85abbdcc29 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:38:06 +0000 Subject: [PATCH] Switch to version 1: remove src/app/shop/page.tsx --- src/app/shop/page.tsx | 84 ------------------------------------------- 1 file changed, 84 deletions(-) delete mode 100644 src/app/shop/page.tsx diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx deleted file mode 100644 index bee02a3..0000000 --- a/src/app/shop/page.tsx +++ /dev/null @@ -1,84 +0,0 @@ -'use client'; - -import { ThemeProvider } from '@/components/theme-provider'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; - -const navItems = [ - { name: 'Home', id: '/' }, - { name: 'Shop', id: '/shop' }, - { name: 'Cart', id: '/cart' }, - { name: 'Checkout', id: '/checkout' }, -]; - -const products = [ - { - id: '1', - name: 'Premium Headphones', - price: '$199.99', - imageSrc: '/placeholder1.jpg', - imageAlt: 'Premium Headphones', - initialQuantity: 1, - }, - { - id: '2', - name: 'Wireless Mouse', - price: '$49.99', - imageSrc: '/placeholder2.jpg', - imageAlt: 'Wireless Mouse', - initialQuantity: 1, - }, - { - id: '3', - name: 'USB-C Cable', - price: '$29.99', - imageSrc: '/placeholder3.jpg', - imageAlt: 'USB-C Cable', - initialQuantity: 1, - }, - { - id: '4', - name: 'Laptop Stand', - price: '$79.99', - imageSrc: '/placeholder4.jpg', - imageAlt: 'Laptop Stand', - initialQuantity: 1, - }, -]; - -export default function ShopPage() { - return ( - - -
-
- -
-
-
- ); -}