Update src/app/shop/page.tsx

This commit is contained in:
2026-02-22 12:24:11 +00:00
parent 44996c2a68
commit a8f0a7d39c

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function ShopPage() {
@@ -10,7 +10,6 @@ export default function ShopPage() {
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" }
];
@@ -59,16 +58,16 @@ export default function ShopPage() {
</div>
<div id="products" data-section="products">
<ProductCardOne
<ProductCardTwo
title="Our Signature Collection"
description="Hand-picked for connoisseurs: discover our best-selling hookahs, premium tobacco, and essential accessories."
products={[
{ id: "1", name: "Classic Elegance Hookah", price: "$129.99", imageSrc: "https://img.b2bpic.net/free-photo/meduza-hookah-with-cockatails-side-view_140725-9140.jpg?_wi=2", imageAlt: "Classic glass hookah" },
{ id: "2", name: "Rich Vanilla Tobacco", price: "$19.99", imageSrc: "https://img.b2bpic.net/free-photo/fresh-shisha-woman-hands_140725-1338.jpg?_wi=2", imageAlt: "Pack of vanilla hookah tobacco" },
{ id: "3", name: "Natural Coconut Charcoal", price: "$14.99", imageSrc: "https://img.b2bpic.net/free-photo/hookah-still-life-composition_23-2149213336.jpg?_wi=2", imageAlt: "Box of natural coconut charcoal" },
{ id: "4", name: "Premium Ceramic Bowl", price: "$24.99", imageSrc: "https://img.b2bpic.net/free-photo/hookah-isolated-white_93675-132617.jpg?_wi=2", imageAlt: "Detailed ceramic hookah bowl" },
{ id: "5", name: "Beginner's Hookah Kit", price: "$89.99", imageSrc: "https://img.b2bpic.net/free-photo/people-enjoying-night-out-together_23-2149173653.jpg?_wi=2", imageAlt: "Complete hookah starter kit" },
{ id: "6", name: "Exotic Flavor Assortment", price: "$49.99", imageSrc: "https://img.b2bpic.net/free-photo/side-view-woman-imposes-pineapple-jam-saucer-with-nuts-glass-tea-table_141793-13056.jpg?_wi=2", imageAlt: "Collection of various hookah tobacco flavors" }
{ id: "1", brand: "Hookah Haven", name: "Classic Elegance Hookah", price: "$129.99", rating: 5, reviewCount: "120", imageSrc: "https://img.b2bpic.net/free-photo/meduza-hookah-with-cockatails-side-view_140725-9140.jpg?_wi=2", imageAlt: "Classic glass hookah" },
{ id: "2", brand: "Hookah Haven", name: "Rich Vanilla Tobacco", price: "$19.99", rating: 5, reviewCount: "98", imageSrc: "https://img.b2bpic.net/free-photo/fresh-shisha-woman-hands_140725-1338.jpg?_wi=2", imageAlt: "Pack of vanilla hookah tobacco" },
{ id: "3", brand: "Hookah Haven", name: "Natural Coconut Charcoal", price: "$14.99", rating: 4, reviewCount: "250", imageSrc: "https://img.b2bpic.net/free-photo/hookah-still-life-composition_23-2149213336.jpg?_wi=2", imageAlt: "Box of natural coconut charcoal" },
{ id: "4", brand: "Hookah Haven", name: "Premium Ceramic Bowl", price: "$24.99", rating: 5, reviewCount: "75", imageSrc: "https://img.b2bpic.net/free-photo/hookah-isolated-white_93675-132617.jpg?_wi=2", imageAlt: "Detailed ceramic hookah bowl" },
{ id: "5", brand: "Hookah Haven", name: "Beginner's Hookah Kit", price: "$89.99", rating: 4, reviewCount: "42", imageSrc: "https://img.b2bpic.net/free-photo/people-enjoying-night-out-together_23-2149173653.jpg?_wi=2", imageAlt: "Complete hookah starter kit" },
{ id: "6", brand: "Hookah Haven", name: "Exotic Flavor Assortment", price: "$49.99", rating: 5, reviewCount: "150", imageSrc: "https://img.b2bpic.net/free-photo/side-view-woman-imposes-pineapple-jam-saucer-with-nuts-glass-tea-table_141793-13056.jpg?_wi=2", imageAlt: "Collection of various hookah tobacco flavors" }
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"