Update src/app/products/page.tsx

This commit is contained in:
2026-05-02 17:12:09 +00:00
parent a2f6bcba97
commit f19c45f7fd

View File

@@ -40,9 +40,9 @@ export default function ProductsPage() {
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", name: "Signature Crispy Bucket", price: "Rs. 1,499", imageSrc: "https://images.unsplash.com/photo-1569058242567-938b84662d85?q=80&w=400&h=400" },
{ id: "2", name: "Premium Classic Chicken Roast", price: "Rs. 899", imageSrc: "https://images.unsplash.com/photo-1598103444019-0604b3917812?q=80&w=400&h=400" },
{ id: "3", name: "Ultimate Double Cheese Burger", price: "Rs. 550", imageSrc: "https://images.unsplash.com/photo-1568901346375-23c9450c58cd?q=80&w=400&h=400" }
{ id: "1", name: "Signature Crispy Bucket", price: "Rs. 1,499", imageSrc: "https://images.unsplash.com/photo-1569058242567-938b84662d85?q=80&w=400&h=400", brand: "LFC", rating: 4.8, reviewCount: "1.2k" },
{ id: "2", name: "Premium Classic Chicken Roast", price: "Rs. 899", imageSrc: "https://images.unsplash.com/photo-1598103444019-0604b3917812?q=80&w=400&h=400", brand: "LFC", rating: 4.5, reviewCount: "850" },
{ id: "3", name: "Ultimate Double Cheese Burger", price: "Rs. 550", imageSrc: "https://images.unsplash.com/photo-1568901346375-23c9450c58cd?q=80&w=400&h=400", brand: "LFC", rating: 4.9, reviewCount: "2.1k" }
]}
/>
</div>