Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1658aa2a26 | |||
| 59c42948c1 | |||
| e9f7fa9ad0 | |||
| 84ca8d57f5 | |||
| a8f0a7d39c | |||
| 44996c2a68 | |||
| 357a746268 | |||
| 75530188a5 | |||
| 1939926c0a | |||
| 89b66583cd | |||
| 84bdd17e46 | |||
| cd6058d42b | |||
| d8495e59e9 | |||
| 3877b8f966 | |||
| 4fe91abb11 |
@@ -2,16 +2,15 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import { Sparkles, ShieldCheck } from 'lucide-react';
|
import { Sparkles } from 'lucide-react';
|
||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Blog", id: "/blog" },
|
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -60,17 +59,20 @@ export default function AboutPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TestimonialAboutCard
|
<MetricSplitMediaAbout
|
||||||
tag="Our Commitment"
|
tag="Our Commitment"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
title="Unmatched Quality for an Unforgettable Experience"
|
title="Unmatched Quality for an Unforgettable Experience"
|
||||||
description="At Hookah Haven, we are dedicated to sourcing only the finest hookah products. Every item in our collection is meticulously selected for its craftsmanship, durability, and ability to deliver a superior smoking session."
|
description="At Hookah Haven, we are dedicated to sourcing only the finest hookah products. Every item in our collection is meticulously selected for its craftsmanship, durability, and ability to deliver a superior smoking session. Experience the difference with every puff."
|
||||||
subdescription="Experience the difference with every puff."
|
metrics={[
|
||||||
icon={ShieldCheck}
|
{ value: "100%", title: "Quality Guarantee" },
|
||||||
|
{ value: "500+", title: "Premium Products Curated" }
|
||||||
|
]}
|
||||||
imageSrc="https://img.b2bpic.net/free-vector/gradient-labels-collection-luxurious-hotel-experience_23-2150241639.jpg"
|
imageSrc="https://img.b2bpic.net/free-vector/gradient-labels-collection-luxurious-hotel-experience_23-2150241639.jpg"
|
||||||
imageAlt="Shield with a checkmark symbolizing quality"
|
imageAlt="Shield with a checkmark symbolizing quality"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
|
metricsAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ export default function BlogPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Blog", id: "/blog" },
|
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
@@ -11,7 +11,6 @@ export default function ContactPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Blog", id: "/blog" },
|
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -60,17 +59,12 @@ export default function ContactPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitMedia
|
<FaqSplitText
|
||||||
title="Frequently Asked Questions"
|
sideTitle="Frequently Asked Questions"
|
||||||
description="Find quick answers to the most common questions about our products, shipping, and services."
|
sideDescription="Find quick answers to the most common questions about our products, shipping, and services."
|
||||||
tag="Need Help?"
|
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/young-distraught-call-center-agent-communicating-with-client-while-using-desktop-pc-office_637285-6461.jpg"
|
textPosition="right"
|
||||||
imageAlt="Customer support representative assisting a client"
|
|
||||||
mediaPosition="left"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
faqs={[
|
faqs={[
|
||||||
{ id: "1", title: "What payment methods do you accept?", content: "We accept major credit cards (Visa, MasterCard, Amex), PayPal, and other secure payment options. All transactions are encrypted for your security." },
|
{ id: "1", title: "What payment methods do you accept?", content: "We accept major credit cards (Visa, MasterCard, Amex), PayPal, and other secure payment options. All transactions are encrypted for your security." },
|
||||||
{ id: "2", title: "How long does shipping take?", content: "Standard shipping typically takes 5-7 business days within the domestic region. International shipping times may vary. Expedited options are available at checkout." },
|
{ id: "2", title: "How long does shipping take?", content: "Standard shipping typically takes 5-7 business days within the domestic region. International shipping times may vary. Expedited options are available at checkout." },
|
||||||
|
|||||||
@@ -11,13 +11,16 @@ export const metadata: Metadata = {
|
|||||||
title: "Hookah Haven - Premium Hookah, Tobacco & Accessories", description: "Discover a premium selection of hookahs, high-quality tobacco, natural charcoal, and essential accessories for an unparalleled smoking experience. Shop now at Hookah Haven.", keywords: ["hookah", "shisha", "tobacco", "charcoal", "hookah accessories", "premium hookah", "online hookah store"],
|
title: "Hookah Haven - Premium Hookah, Tobacco & Accessories", description: "Discover a premium selection of hookahs, high-quality tobacco, natural charcoal, and essential accessories for an unparalleled smoking experience. Shop now at Hookah Haven.", keywords: ["hookah", "shisha", "tobacco", "charcoal", "hookah accessories", "premium hookah", "online hookah store"],
|
||||||
metadataBase: new URL("https://www.hookahhaven.com"),
|
metadataBase: new URL("https://www.hookahhaven.com"),
|
||||||
alternates: {
|
alternates: {
|
||||||
canonical: "https://www.hookahhaven.com"},
|
canonical: "https://www.hookahhaven.com"
|
||||||
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "Hookah Haven - Premium Hookah, Tobacco & Accessories", description: "Discover a premium selection of hookahs, high-quality tobacco, natural charcoal, and essential accessories for an unparalleled smoking experience. Shop now at Hookah Haven.", url: "https://www.hookahhaven.com", siteName: "Hookah Haven", images: [
|
title: "Hookah Haven - Premium Hookah, Tobacco & Accessories", description: "Discover a premium selection of hookahs, high-quality tobacco, natural charcoal, and essential accessories for an unparalleled smoking experience. Shop now at Hookah Haven.", url: "https://www.hookahhaven.com", siteName: "Hookah Haven", images: [
|
||||||
{
|
{
|
||||||
url: "https://img.b2bpic.net/free-photo/classic-hookah-beautiful-colored-rays-light-smoke-concept-hookah-smoking_169016-5136.jpg", alt: "Elegant hookah setup"},
|
url: "https://img.b2bpic.net/free-photo/classic-hookah-beautiful-colored-rays-light-smoke-concept-hookah-smoking_169016-5136.jpg", alt: "Elegant hookah setup"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
type: "website"},
|
type: "website"
|
||||||
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image", title: "Hookah Haven - Premium Hookah, Tobacco & Accessories", description: "Discover a premium selection of hookahs, high-quality tobacco, natural charcoal, and essential accessories for an unparalleled smoking experience. Shop now at Hookah Haven.", images: ["https://img.b2bpic.net/free-photo/classic-hookah-beautiful-colored-rays-light-smoke-concept-hookah-smoking_169016-5136.jpg"],
|
card: "summary_large_image", title: "Hookah Haven - Premium Hookah, Tobacco & Accessories", description: "Discover a premium selection of hookahs, high-quality tobacco, natural charcoal, and essential accessories for an unparalleled smoking experience. Shop now at Hookah Haven.", images: ["https://img.b2bpic.net/free-photo/classic-hookah-beautiful-colored-rays-light-smoke-concept-hookah-smoking_169016-5136.jpg"],
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
||||||
@@ -15,7 +15,6 @@ export default function HomePage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Blog", id: "/blog" },
|
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -64,24 +63,16 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroBillboardScroll
|
||||||
title="Elevate Your Hookah Experience"
|
title="Elevate Your Hookah Experience"
|
||||||
description="Discover a curated selection of premium hookahs, exquisite tobacco flavors, and high-quality accessories for the perfect session."
|
description="Discover a curated selection of premium hookahs, exquisite tobacco flavors, and high-quality accessories for the perfect session."
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
kpis={[
|
|
||||||
{ value: "1000+", label: "Premium Products" },
|
|
||||||
{ value: "24/7", label: "Customer Support" },
|
|
||||||
{ value: "Fast", label: "Worldwide Shipping" },
|
|
||||||
]}
|
|
||||||
enableKpiAnimation={true}
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Now", href: "/products" },
|
{ text: "Shop Now", href: "/products" },
|
||||||
{ text: "Explore Flavors", href: "/products#tobacco" },
|
{ text: "Explore Flavors", href: "/products#tobacco" },
|
||||||
]}
|
]}
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/classic-hookah-beautiful-colored-rays-light-smoke-concept-hookah-smoking_169016-5136.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/classic-hookah-beautiful-colored-rays-light-smoke-concept-hookah-smoking_169016-5136.jpg"
|
||||||
imageAlt="Elegant hookah setup with smoke in a luxurious setting"
|
imageAlt="Elegant hookah setup with smoke in a luxurious setting"
|
||||||
mediaAnimation="slide-up"
|
|
||||||
imagePosition="right"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
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';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
export default function ProductsPage() {
|
export default function ProductsPage() {
|
||||||
@@ -10,7 +10,6 @@ export default function ProductsPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Blog", id: "/blog" },
|
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -59,16 +58,16 @@ export default function ProductsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardOne
|
<ProductCardTwo
|
||||||
title="Our Signature Collection"
|
title="Our Signature Collection"
|
||||||
description="Hand-picked for connoisseurs: discover our best-selling hookahs, premium tobacco, and essential accessories."
|
description="Hand-picked for connoisseurs: discover our best-selling hookahs, premium tobacco, and essential accessories."
|
||||||
products={[
|
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=1", imageAlt: "Classic glass hookah" },
|
{ 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=1", 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=1", imageAlt: "Pack of vanilla hookah tobacco" },
|
{ 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=1", 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=1", imageAlt: "Box of natural coconut charcoal" },
|
{ 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=1", 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=1", imageAlt: "Detailed ceramic hookah bowl" },
|
{ 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=1", 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=1", imageAlt: "Complete hookah starter kit" },
|
{ 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=1", 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=1", imageAlt: "Collection of various hookah tobacco flavors" }
|
{ 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=1", imageAlt: "Collection of various hookah tobacco flavors" }
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ export default function ProductPage({ params }: { params: { id: string } }) {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Blog", id: "/blog" },
|
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
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';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
export default function ShopPage() {
|
export default function ShopPage() {
|
||||||
@@ -10,7 +10,6 @@ export default function ShopPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Blog", id: "/blog" },
|
|
||||||
{ name: "Contact", id: "/contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -59,16 +58,16 @@ export default function ShopPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardOne
|
<ProductCardTwo
|
||||||
title="Our Signature Collection"
|
title="Our Signature Collection"
|
||||||
description="Hand-picked for connoisseurs: discover our best-selling hookahs, premium tobacco, and essential accessories."
|
description="Hand-picked for connoisseurs: discover our best-selling hookahs, premium tobacco, and essential accessories."
|
||||||
products={[
|
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: "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", 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: "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", 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: "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", 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: "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", 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: "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", 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: "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"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user