import React, { useState } from 'react'; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { ShoppingCart, Search } from 'lucide-react'; export default function ZaraStarsStore() { const [cart, setCart] = useState([]); const products = [ { id: 1, name: "Ocean Bead Bracelet", price: 12.99, img: "https://via.placeholder.com/300" }, { id: 2, name: "Star Charm Bracelet", price: 14.99, img: "https://via.placeholder.com/300" }, { id: 3, name: "Pastel Thread Bracelet", price: 9.99, img: "https://via.placeholder.com/300" }, { id: 4, name: "Gold Heart Bracelet", price: 15.99, img: "https://via.placeholder.com/300" }, ]; const addToCart = (product) => { setCart([...cart, product]); }; return (
{/* Header */}

Zara Stars

{/* Slogan */}

Bracelets for every weather, season, and person ✨

{/* Search Bar */}
{/* Products Grid */}
{products.map((product) => ( {product.name}

{product.name}

${product.price}

))}
{/* Footer */}
© {new Date().getFullYear()} Zara Stars. All rights reserved.
); }