Merge version_3 into main #7
@@ -2,16 +2,15 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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 { Sparkles, ShieldCheck } from 'lucide-react';
|
||||
import { Sparkles } from 'lucide-react';
|
||||
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
@@ -60,14 +59,16 @@ export default function AboutPage() {
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
<MetricSplitMediaAbout
|
||||
tag="Our Commitment"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="blur-reveal"
|
||||
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."
|
||||
subdescription="Experience the difference with every puff."
|
||||
icon={ShieldCheck}
|
||||
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."
|
||||
metrics={[
|
||||
{ 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"
|
||||
imageAlt="Shield with a checkmark symbolizing quality"
|
||||
mediaAnimation="slide-up"
|
||||
|
||||
@@ -10,7 +10,6 @@ export default function BlogPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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 FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
@@ -11,7 +11,6 @@ export default function ContactPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
@@ -60,17 +59,12 @@ export default function ContactPage() {
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to the most common questions about our products, shipping, and services."
|
||||
tag="Need Help?"
|
||||
<FaqSplitText
|
||||
sideTitle="Frequently Asked Questions"
|
||||
sideDescription="Find quick answers to the most common questions about our products, shipping, and services."
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
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"
|
||||
imageAlt="Customer support representative assisting a client"
|
||||
mediaPosition="left"
|
||||
mediaAnimation="slide-up"
|
||||
textPosition="right"
|
||||
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: "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." },
|
||||
|
||||
@@ -15,7 +15,6 @@ export default function HomePage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
@@ -74,7 +73,6 @@ export default function HomePage() {
|
||||
]}
|
||||
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"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -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 ProductsPage() {
|
||||
@@ -10,7 +10,6 @@ export default function ProductsPage() {
|
||||
{ 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 ProductsPage() {
|
||||
</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=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: "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: "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: "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: "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: "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", 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", 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", 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", 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", 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"
|
||||
animationType="slide-up"
|
||||
|
||||
@@ -9,7 +9,6 @@ export default function ProductPage({ params }: { params: { id: string } }) {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user