diff --git a/src/pages/HomePage/sections/Products.tsx b/src/pages/HomePage/sections/Products.tsx index c041ace..043ec01 100644 --- a/src/pages/HomePage/sections/Products.tsx +++ b/src/pages/HomePage/sections/Products.tsx @@ -63,53 +63,108 @@ const ProductsInline = () => { tag="p" className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance" /> - - {(undefined || undefined) && ( -
- {undefined &&
- )}
- {[{"description":"Buttery, golden, and perfect with your morning coffee.","href":"#","buttonText":"Buy Now","title":"Flaky Croissants ⭐⭐⭐⭐⭐","imageSrc":"http://img.b2bpic.net/free-photo/freshly-baked-croissant-white-plate-with-black-coffee_181624-60129.jpg"},{"description":"Slow-fermented for a rich flavor and perfect crust.","href":"#","imageSrc":"http://img.b2bpic.net/free-photo/loaf-bread-tied-with-rope-wooden-board_114579-72178.jpg","buttonText":"Buy Now","title":"Artisan Sourdough ⭐⭐⭐⭐⭐"},{"description":"Beautifully decorated and bursting with flavor.","href":"#","imageSrc":"http://img.b2bpic.net/free-photo/delicious-rainbow-cupcake-still-life_23-2150423807.jpg","buttonText":"Buy Now","title":"Gourmet Cupcakes ⭐⭐⭐⭐⭐"},{"description":"Classic recipes with a homemade taste you'll love.","href":"#","buttonText":"Buy Now","title":"Signature Cookies ⭐⭐⭐⭐⭐","imageSrc":"http://img.b2bpic.net/free-photo/bunch-cookies-bundled-together-marble-background_114579-25950.jpg"},{"buttonText":"Buy Now","title":"Seasonal Fruit Pies ⭐⭐⭐⭐⭐","imageSrc":"http://img.b2bpic.net/free-photo/top-view-fruit-pie-arrangement_23-2148531646.jpg","href":"#","description":"Made with the freshest fruits of the season."},{"imageSrc":"http://img.b2bpic.net/free-photo/from-cake-table_23-2147783757.jpg","title":"Custom Celebration Cakes ⭐⭐⭐⭐⭐","buttonText":"Buy Now","description":"Designed to make your special moments unforgettable.","href":"#"},{"title":"Sweet Cinnamon Rolls ⭐⭐⭐⭐⭐","buttonText":"Buy Now","imageSrc":"http://img.b2bpic.net/free-photo/cinnamon-rolls-buns-wooden-table-kanelbulle-swedish-dessert_123827-22535.jpg","description":"Warm, gooey, and topped with decadent cream cheese frosting.","href":"#"}].map((item, index) => ( - - -
+ {[ + { + description: "Buttery, golden, and perfect with your morning coffee.", + href: "#", + buttonText: "Buy Now", + title: "Flaky Croissants ⭐⭐⭐⭐⭐", + imageSrc: "http://img.b2bpic.net/free-photo/freshly-baked-croissant-white-plate-with-black-coffee_181624-60129.jpg" + }, + { + description: "Slow-fermented for a rich flavor and perfect crust.", + href: "#", + imageSrc: "http://img.b2bpic.net/free-photo/loaf-bread-tied-with-rope-wooden-board_114579-72178.jpg", + buttonText: "Buy Now", + title: "Artisan Sourdough ⭐⭐⭐⭐⭐" + }, + { + description: "Beautifully decorated and bursting with flavor.", + href: "#", + imageSrc: "http://img.b2bpic.net/free-photo/delicious-rainbow-cupcake-still-life_23-2150423807.jpg", + buttonText: "Buy Now", + title: "Gourmet Cupcakes ⭐⭐⭐⭐⭐" + }, + { + description: "Classic recipes with a homemade taste you'll love.", + href: "#", + buttonText: "Buy Now", + title: "Signature Cookies ⭐⭐⭐⭐⭐", + imageSrc: "http://img.b2bpic.net/free-photo/bunch-cookies-bundled-together-marble-background_114579-25950.jpg" + }, + { + buttonText: "Buy Now", + title: "Seasonal Fruit Pies ⭐⭐⭐⭐⭐", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-fruit-pie-arrangement_23-2148531646.jpg", + href: "#", + description: "Made with the freshest fruit and a flaky, buttery crust." + }, + { + buttonText: "Buy Now", + title: "Decadent Brownies ⭐⭐⭐⭐⭐", + imageSrc: "http://img.b2bpic.net/free-photo/chocolate-brownie-cake-piece-with-walnuts-wooden-table_114579-33519.jpg", + href: "#", + description: "Fudgy, rich, and packed with premium chocolate chunks." + }, + { + buttonText: "Buy Now", + title: "Red Velvet Cake ⭐⭐⭐⭐⭐", + imageSrc: "http://img.b2bpic.net/free-photo/slice-red-velvet-cake-with-cream-cheese-frosting_114579-33520.jpg", + href: "#", + description: "Moist layers of vibrant red cake with decadent cream cheese frosting." + } + ].map((item, index) => { + const gridClasses = [ + "md:col-span-2", + "md:col-span-4", + "md:col-span-3", + "md:col-span-3", + "md:col-span-2", + "md:col-span-2", + "md:col-span-2", + ]; + const staggerDelays = [0, 0.1, 0, 0.1, 0, 0.1, 0.2]; + + return ( + +
+
+
+ +
+

+ {item.title} +

+

+ {item.description} +

+
-
); -}; - -export default function ProductsSection() { - return ( -
- -
- ); }