import { useState } from 'react';
import { ShoppingCart, Star, Instagram, Facebook, Send } from 'lucide-react';
import Navbar from './components/Navbar';
import Hero from './components/Hero';
import Products from './components/Products';
import Reviews from './components/Reviews';
import Contact from './components/Contact';
import Footer from './components/Footer';
function App() {
const [cartCount, setCartCount] = useState(0);
const handleAddToCart = () => {
setCartCount(prev => prev + 1);
};
return (
<div className="min-h-screen bg-[#FAF8F6]">
<Navbar cartCount={cartCount} />
<Hero />
<Products onAddToCart={handleAddToCart} />
<Reviews />
<Contact />
<Footer />
</div>
);
}
export default App;