diff --git a/src/app/page.tsx b/src/app/page.tsx index fe6b9c8..054364d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,22 +32,10 @@ export default function LandingPage() { @@ -107,42 +78,12 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={true} products={[ - { - id: "p1", - name: "Classic Margherita Pizza", - price: "$12.99", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-dinner-horizontal-no-people-diet_1122-2448.jpg?_wi=1", - }, - { - id: "p2", - name: "Gourmet Beef Burger", - price: "$14.99", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-hand-pouring-sesame-seeds-beef-burger-with-salad-bacon_23-2148784492.jpg", - }, - { - id: "p3", - name: "Greek Salad Bowl", - price: "$10.50", - imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-cheese-cucumber-tomato-olive-white-bowl-wooden-surface-top-view-healthy-food_176474-282.jpg", - }, - { - id: "p4", - name: "Grilled Salmon", - price: "$18.99", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-fried-shrimp-with-sauce-plate_141793-11283.jpg", - }, - { - id: "p5", - name: "Spicy Chicken Wings", - price: "$9.99", - imageSrc: "http://img.b2bpic.net/free-photo/plate-chicken-wings-grunge-black-background_1258-200.jpg", - }, - { - id: "p6", - name: "Chocolate Lava Cake", - price: "$6.99", - imageSrc: "http://img.b2bpic.net/free-photo/sweet-creamy-cupcake-purple-plate_114579-52049.jpg", - }, + { id: "p1", name: "Classic Margherita Pizza", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/closeup-dinner-horizontal-no-people-diet_1122-2448.jpg" }, + { id: "p2", name: "Gourmet Beef Burger", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-hand-pouring-sesame-seeds-beef-burger-with-salad-bacon_23-2148784492.jpg" }, + { id: "p3", name: "Greek Salad Bowl", price: "$10.50", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-cheese-cucumber-tomato-olive-white-bowl-wooden-surface-top-view-healthy-food_176474-282.jpg" }, + { id: "p4", name: "Grilled Salmon", price: "$18.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fried-shrimp-with-sauce-plate_141793-11283.jpg" }, + { id: "p5", name: "Spicy Chicken Wings", price: "$9.99", imageSrc: "http://img.b2bpic.net/free-photo/plate-chicken-wings-grunge-black-background_1258-200.jpg" }, + { id: "p6", name: "Chocolate Lava Cake", price: "$6.99", imageSrc: "http://img.b2bpic.net/free-photo/sweet-creamy-cupcake-purple-plate_114579-52049.jpg" }, ]} title="Popular Menu Items" description="Our chef-selected favorites, ready to order." @@ -151,56 +92,24 @@ export default function LandingPage() {
@@ -337,29 +182,15 @@ export default function LandingPage() { logoText="FreshEats" columns={[ { - title: "Company", - items: [ - { - label: "About", - href: "#about", - }, - { - label: "Jobs", - href: "#", - }, + title: "Company", items: [ + { label: "About", href: "#about" }, + { label: "Jobs", href: "#" }, ], }, { - title: "Legal", - items: [ - { - label: "Terms", - href: "#", - }, - { - label: "Privacy", - href: "#", - }, + title: "Legal", items: [ + { label: "Terms", href: "#" }, + { label: "Privacy", href: "#" }, ], }, ]}