import React, { useState } from 'react'; import { ShoppingCart, Heart, Search, Menu, X, Star, Phone, Mail, MapPin, Facebook, Instagram, Twitter } from 'lucide-react'; const PerfumeStore = () => { const [cart, setCart] = useState([]); const [favorites, setFavorites] = useState([]); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); const [selectedCategory, setSelectedCategory] = useState('all'); const [cartOpen, setCartOpen] = useState(false); const products = [ { id: 1, name: "Midnight Noir", brand: "Élégance Paris", price: 8500, category: "women", image: "https://images.unsplash.com/photo-1541643600914-78b084683601?w=400", rating: 4.8, reviews: 124, notes: "Jasmine, Vanilla, Sandalwood", sizes: ["30ml", "50ml", "100ml"] }, { id: 2, name: "Ocean Breeze", brand: "Azure Collection", price: 6900, category: "men", image: "https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?w=400", rating: 4.6, reviews: 89, notes: "Bergamot, Sea Salt, Cedarwood", sizes: ["50ml", "100ml"] }, { id: 3, name: "Rose Royale", brand: "Maison de Luxe", price: 12500, category: "women", image: "https://images.unsplash.com/photo-1588405748880-12d1d2a59926?w=400", rating: 4.9, reviews: 203, notes: "Turkish Rose, Oud, Amber", sizes: ["30ml", "50ml", "100ml"] }, { id: 4, name: "Leather & Spice", brand: "Sovereign Man", price: 9800, category: "men", image: "https://images.unsplash.com/photo-1587017539504-67cfbddac569?w=400", rating: 4.7, reviews: 156, notes: "Leather, Black Pepper, Tobacco", sizes: ["50ml", "100ml"] }, { id: 5, name: "Golden Hour", brand: "Sunset Collection", price: 7500, category: "unisex", image: "https://images.unsplash.com/photo-1594035910387-fea47794261f?w=400", rating: 4.5, reviews: 98, notes: "Citrus, Honey, Musk", sizes: ["30ml", "50ml", "100ml"] }, { id: 6, name: "Velvet Dream", brand: "Élégance Paris", price: 11200, category: "women", image: "https://images.unsplash.com/photo-1557170334-a9632e77c6e4?w=400", rating: 4.9, reviews: 187, notes: "Peony, Praline, Cashmere Wood", sizes: ["50ml", "100ml"] } ]; const addToCart = (product, size) => { const cartItem = { ...product, size, cartId: Date.now() }; setCart([...cart, cartItem]); setCartOpen(true); }; const removeFromCart = (cartId) => { setCart(cart.filter(item => item.cartId !== cartId)); }; const toggleFavorite = (id) => { if (favorites.includes(id)) { setFavorites(favorites.filter(fav => fav !== id)); } else { setFavorites([...favorites, id]); } }; const filteredProducts = selectedCategory === 'all' ? products : products.filter(p => p.category === selectedCategory); const cartTotal = cart.reduce((sum, item) => sum + item.price, 0); return (
{/* Header */}

AROMA LUXE

{/* Mobile Menu */} {mobileMenuOpen && ( )}
{/* Hero Section */}

Discover Your Signature Scent

Luxury perfumes from around the world. Free delivery in Nairobi for orders over KES 10,000

{/* Category Filter */}
{/* Products Grid */}
{filteredProducts.map(product => (
{product.name}

{product.brand}

{product.name}

{product.rating}
({product.reviews} reviews)

Notes: {product.notes}

KES {product.price.toLocaleString()}

Select Size:

{product.sizes.map(size => ( ))}
))}
{/* About Section */}

Why Choose Aroma Luxe?

We curate the finest perfumes from renowned international brands and emerging artisanal perfumers. Every bottle is authentic, stored properly, and delivered with care.

  • 100% authentic luxury perfumes
  • Free delivery in Nairobi for orders over KES 10,000
  • Gift wrapping available
  • M-Pesa & card payments accepted
Perfume Perfume
{/* Contact Section */}

Get In Touch

Call Us

+254 712 345 678

Email Us

info@aromaluxe.co.ke

Visit Us

Westlands, Nairobi

{/* Footer */} {/* Cart Sidebar */} {cartOpen && (
setCartOpen(false)}>
e.stopPropagation()} >

Shopping Cart

{cart.length === 0 ? (

Your cart is empty

) : ( <>
{cart.map(item => (
{item.name}

{item.name}

{item.size}

KES {item.price.toLocaleString()}

))}
Total: KES {cartTotal.toLocaleString()}
)}
)}
); }; export default PerfumeStore;