diff --git a/src/app/page.tsx b/src/app/page.tsx index 157ed0e..5af9e7a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,22 +29,10 @@ export default function LandingPage() {
@@ -106,60 +71,12 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={true} products={[ - { - id: "m1", - brand: "Starter", - name: "Escargot de Bourgogne", - price: "$18", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-eggplant-dish_23-2150410403.jpg", - }, - { - id: "m2", - brand: "Main", - name: "Coq au Vin", - price: "$32", - rating: 5, - reviewCount: "240", - imageSrc: "http://img.b2bpic.net/free-photo/duck-breast-steak-white-plate_1203-8926.jpg", - }, - { - id: "m3", - brand: "Main", - name: "Duck Confit", - price: "$36", - rating: 5, - reviewCount: "185", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-christmas-steak-plate-with-cutlery_23-2148705343.jpg", - }, - { - id: "m4", - brand: "Dessert", - name: "Crème Brûlée", - price: "$12", - rating: 5, - reviewCount: "310", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-creamy-dessert-with-fresh-strawberries-light-white-wall-dessert-ice-cream-sweet-fruit-taste_140725-52936.jpg", - }, - { - id: "m5", - brand: "Starter", - name: "French Onion Soup", - price: "$14", - rating: 5, - reviewCount: "402", - imageSrc: "http://img.b2bpic.net/free-photo/tomato-soup-inside-green-bowl-with-chopped-white-cheese-it-with-cracker-bowl-around_114579-2933.jpg", - }, - { - id: "m6", - brand: "Main", - name: "Steak Frites", - price: "$38", - rating: 5, - reviewCount: "295", - imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-mushrooms-vegetables-sauce_140725-4682.jpg", - }, + { id: "m1", brand: "Starter", name: "Escargot de Bourgogne", price: "$18", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-eggplant-dish_23-2150410403.jpg" }, + { id: "m2", brand: "Main", name: "Coq au Vin", price: "$32", rating: 5, reviewCount: "240", imageSrc: "http://img.b2bpic.net/free-photo/duck-breast-steak-white-plate_1203-8926.jpg" }, + { id: "m3", brand: "Main", name: "Duck Confit", price: "$36", rating: 5, reviewCount: "185", imageSrc: "http://img.b2bpic.net/free-photo/top-view-christmas-steak-plate-with-cutlery_23-2148705343.jpg" }, + { id: "m4", brand: "Dessert", name: "Crème Brûlée", price: "$12", rating: 5, reviewCount: "310", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-creamy-dessert-with-fresh-strawberries-light-white-wall-dessert-ice-cream-sweet-fruit-taste_140725-52936.jpg" }, + { id: "m5", brand: "Starter", name: "French Onion Soup", price: "$14", rating: 5, reviewCount: "402", imageSrc: "http://img.b2bpic.net/free-photo/tomato-soup-inside-green-bowl-with-chopped-white-cheese-it-with-cracker-bowl-around_114579-2933.jpg" }, + { id: "m6", brand: "Main", name: "Steak Frites", price: "$38", rating: 5, reviewCount: "295", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-mushrooms-vegetables-sauce_140725-4682.jpg" } ]} title="Signature Dishes" description="Indulge in our curated selection of French classics and modern delicacies." @@ -168,44 +85,15 @@ export default function LandingPage() {