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 */}
setMobileMenuOpen(!mobileMenuOpen)}
>
{mobileMenuOpen ? : }
AROMA LUXE
Home
Shop
About
Contact
{favorites.length > 0 && (
{favorites.length}
)}
setCartOpen(!cartOpen)}
>
{cart.length > 0 && (
{cart.length}
)}
{/* 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
Shop Collection
{/* Category Filter */}
setSelectedCategory('all')}
className={`px-6 py-2 rounded-full font-medium transition ${
selectedCategory === 'all'
? 'bg-purple-600 text-white'
: 'bg-white text-gray-700 hover:bg-gray-100'
}`}
>
All Perfumes
setSelectedCategory('women')}
className={`px-6 py-2 rounded-full font-medium transition ${
selectedCategory === 'women'
? 'bg-purple-600 text-white'
: 'bg-white text-gray-700 hover:bg-gray-100'
}`}
>
For Her
setSelectedCategory('men')}
className={`px-6 py-2 rounded-full font-medium transition ${
selectedCategory === 'men'
? 'bg-purple-600 text-white'
: 'bg-white text-gray-700 hover:bg-gray-100'
}`}
>
For Him
setSelectedCategory('unisex')}
className={`px-6 py-2 rounded-full font-medium transition ${
selectedCategory === 'unisex'
? 'bg-purple-600 text-white'
: 'bg-white text-gray-700 hover:bg-gray-100'
}`}
>
Unisex
{/* Products Grid */}
{filteredProducts.map(product => (
toggleFavorite(product.id)}
className="absolute top-4 right-4 bg-white rounded-full p-2 shadow-md hover:bg-red-50 transition"
>
{product.brand}
{product.name}
{product.rating}
({product.reviews} reviews)
Notes: {product.notes}
KES {product.price.toLocaleString()}
Select Size:
{product.sizes.map(size => (
addToCart(product, size)}
className="flex-1 px-4 py-2 border border-purple-600 text-purple-600 rounded-md hover:bg-purple-600 hover:text-white transition font-medium"
>
{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
{/* Contact Section */}
{/* Footer */}
AROMA LUXE
Your destination for luxury perfumes in Kenya
© 2025 Aroma Luxe. All rights reserved. Built by PureSites
{/* Cart Sidebar */}
{cartOpen && (
setCartOpen(false)}>
e.stopPropagation()}
>
Shopping Cart
setCartOpen(false)}>
{cart.length === 0 ? (
Your cart is empty
) : (
<>
{cart.map(item => (
{item.name}
{item.size}
KES {item.price.toLocaleString()}
removeFromCart(item.cartId)}
className="text-red-500 hover:text-red-700"
>
))}
Total:
KES {cartTotal.toLocaleString()}
Checkout with M-Pesa
Continue Shopping
)}
)}
);
};
export default PerfumeStore;