diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index fad867c..b8eb889 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -8,7 +8,18 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function MenuPage() { return ( - +
@@ -19,12 +30,12 @@ export default function MenuPage() { animationType="slide-up" textboxLayout="default" products={[ - { id: "1", brand: "Entrées", name: "Raviolis Mandu", price: "9€", imageSrc: "http://img.b2bpic.net/free-photo/fried-pork-topped-with-sesame-placed-black-dish_1150-23120.jpg" }, - { id: "2", brand: "Crêpes", name: "Kimchijeon", price: "12€", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-candies-with-cake-inside-plate-dark-background-tea-biscuit-candy-cake-sweet_140725-116350.jpg" }, - { id: "3", brand: "Bibimbap", name: "Bibimbap Traditionnel", price: "18€", imageSrc: "http://img.b2bpic.net/free-photo/sukiyaki-seafood-served-with-suki-spicy-sauce_1150-27335.jpg" }, - { id: "4", brand: "Kimbap", name: "Kimbap Boeuf", price: "10€", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-fried-meat-potato-black-tray_181624-28399.jpg" }, - { id: "5", brand: "Grillades", name: "Bulgogi", price: "24€", imageSrc: "http://img.b2bpic.net/free-photo/tom-yum-kung-bowl-with-tomato-chili-lemongrass-garlic-lemon-kaffir-lime-leaves_1150-25787.jpg" }, - { id: "6", brand: "Boissons", name: "Soju Traditionnel", price: "15€", imageSrc: "http://img.b2bpic.net/free-photo/healthy-chinese-cabbage-salad-plate-wooden-table_123827-21097.jpg" } + { id: "1", brand: "Entrées", name: "Raviolis Mandu", price: "9€", rating: 4, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/fried-pork-topped-with-sesame-placed-black-dish_1150-23120.jpg" }, + { id: "2", brand: "Crêpes", name: "Kimchijeon", price: "12€", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-candies-with-cake-inside-plate-dark-background-tea-biscuit-candy-cake-sweet_140725-116350.jpg" }, + { id: "3", brand: "Bibimbap", name: "Bibimbap Traditionnel", price: "18€", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/sukiyaki-seafood-served-with-suki-spicy-sauce_1150-27335.jpg" }, + { id: "4", brand: "Kimbap", name: "Kimbap Boeuf", price: "10€", rating: 4, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-fried-meat-potato-black-tray_181624-28399.jpg" }, + { id: "5", brand: "Grillades", name: "Bulgogi", price: "24€", rating: 5, reviewCount: "340", imageSrc: "http://img.b2bpic.net/free-photo/tom-yum-kung-bowl-with-tomato-chili-lemongrass-garlic-lemon-kaffir-lime-leaves_1150-25787.jpg" }, + { id: "6", brand: "Boissons", name: "Soju Traditionnel", price: "15€", rating: 4, reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/healthy-chinese-cabbage-salad-plate-wooden-table_123827-21097.jpg" } ]} />
@@ -35,6 +46,7 @@ export default function MenuPage() {