diff --git a/lib/main.dart b/lib/main.dart index 9e3fd83..8d643c4 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -967,19 +967,63 @@ class ShopGridRightSidebarPage extends StatelessWidget { }, ), ProductCard( - imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-1-1.jpg', - category: 'Snack', - title: 'Seeds of Change Organic Quinoa', - rating: 4.0, - brand: 'NestFood', - currentPrice: 28.85, - originalPrice: 32.8, + imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-2-1.jpg', + category: 'Hodo Foods', + title: 'All Natural Italian-style Chicken Meatball', + rating: 3.5, + brand: 'Stouffer', + currentPrice: 52.25, + originalPrice: 55.6, onAdd: () { ScaffoldMessenger.of(context).showSnackBar( const SnackBar(content: Text('Added to cart!')), ); }, ), + ProductCard( + imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-3-1.jpg', + category: 'Snack', + title: "Angie’s Boomchickapop Sweet & Salty", + rating: 4.0, + brand: 'By StarKist', + currentPrice: 48.85, + originalPrice: 52.80, + onAdd: () { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text('Added to cart!')), + ); + }, + ), + ProductCard( + imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-4-1.jpg', + category: 'Vegetable', + title: 'Foster Farms Takeout Crispy Classic', + rating: 4.0, + brand: 'NestFood', + currentPrice: 17.85, + originalPrice: 19.8, + onAdd: (){ + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text('Added to card!')), + ); + }, + ), + ProductCard( + imageUrl: 'https://nest-frontend-v6.vercel.app/assets/imgs/shop/product-5-1.jpg', + category: 'Pet Foods', + title: 'Blue Diamond Almonds Lightly', + rating: 4.0, + brand: "NestFood", + currentPrice: 23.85, + originalPrice: 25.8, + onAdd: (){ + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text('Added to card!')), + ); + }, + ), + + const SizedBox(height: 24), ], ),