diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 0342b9c..3cc83ea 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -12,25 +12,10 @@ export default function ShopPage() { { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, { name: "About", id: "/about" }, - { name: "Reviews", id: "/testimonials" }, { name: "Contact", id: "/contact" }, + { name: "FAQ", id: "faq" }, ]; - const handleNavClick = (id: string) => { - if (id === "/") { - window.location.href = "/"; - } else if (id.startsWith("/")) { - window.location.href = id; - } else if (id.startsWith("http")) { - window.open(id, "_blank"); - } else { - const element = document.getElementById(id); - if (element) { - element.scrollIntoView({ behavior: "smooth" }); - } - } - }; - return ( @@ -98,13 +89,16 @@ export default function ShopPage() { products={[ { id: "7", brand: "StyleHub Limited", name: "Vintage Leather Jacket", price: "$189.99", rating: 5, - reviewCount: "1.2k", imageSrc: "http://img.b2bpic.net/free-photo/woman-model-demonstrating-winter-cloths_1303-16967.jpg", imageAlt: "Vintage leather jacket"}, + reviewCount: "1.2k", imageSrc: "http://img.b2bpic.net/free-photo/woman-model-demonstrating-winter-cloths_1303-16967.jpg", imageAlt: "Vintage leather jacket" + }, { id: "8", brand: "StyleHub Modern", name: "Minimalist Cotton Tee", price: "$49.99", rating: 5, - reviewCount: "980", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelmodern-man-dressed-white-shirt-fashion-male-posing-street-background-sunglasses-outdoors-sunset_158538-20630.jpg", imageAlt: "Minimalist cotton tee"}, + reviewCount: "980", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelmodern-man-dressed-white-shirt-fashion-male-posing-street-background-sunglasses-outdoors-sunset_158538-20630.jpg", imageAlt: "Minimalist cotton tee" + }, { id: "9", brand: "StyleHub Trend", name: "Cargo Pants", price: "$119.99", rating: 5, - reviewCount: "1.1k", imageSrc: "http://img.b2bpic.net/free-photo/spring-wardrobe-switch-top-view_23-2150264140.jpg", imageAlt: "Cargo pants"}, + reviewCount: "1.1k", imageSrc: "http://img.b2bpic.net/free-photo/spring-wardrobe-switch-top-view_23-2150264140.jpg", imageAlt: "Cargo pants" + }, ]} />