diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
index 3a12125..1364ff0 100644
--- a/src/app/menu/page.tsx
+++ b/src/app/menu/page.tsx
@@ -25,22 +25,10 @@ export default function LandingPage() {
@@ -53,30 +41,10 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
- {
- id: "m1",
- name: "Döner Kebab",
- price: "6,50 €",
- imageSrc: "http://img.b2bpic.net/free-photo/plov-ustu-doner-table_140725-9249.jpg?_wi=2",
- },
- {
- id: "m2",
- name: "Dürüm",
- price: "7,00 €",
- imageSrc: "http://img.b2bpic.net/free-photo/beef-burrito-with-tomato-cucumber-lettuce-jalapeno-served-with-fries-sauces-vertical_141793-1862.jpg?_wi=2",
- },
- {
- id: "m3",
- name: "Pommes Mayonnaise",
- price: "3,50 €",
- imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-potato-fries-with-white-dressing_23-2148501598.jpg",
- },
- {
- id: "m4",
- name: "Grillfleisch Teller",
- price: "9,50 €",
- imageSrc: "http://img.b2bpic.net/free-photo/caucasian-food-sac-ici-with-mixed-ingredients_114579-2459.jpg?_wi=1",
- },
+ { id: "m1", name: "Döner Kebab", price: "6,50 €", imageSrc: "http://img.b2bpic.net/free-photo/plov-ustu-doner-table_140725-9249.jpg?_wi=2" },
+ { id: "m2", name: "Dürüm", price: "7,00 €", imageSrc: "http://img.b2bpic.net/free-photo/beef-burrito-with-tomato-cucumber-lettuce-jalapeno-served-with-fries-sauces-vertical_141793-1862.jpg?_wi=2" },
+ { id: "m3", name: "Pommes Mayonnaise", price: "3,50 €", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-potato-fries-with-white-dressing_23-2148501598.jpg" },
+ { id: "m4", name: "Grillfleisch Teller", price: "9,50 €", imageSrc: "http://img.b2bpic.net/free-photo/caucasian-food-sac-ici-with-mixed-ingredients_114579-2459.jpg?_wi=1" },
]}
title="Unser Menü"
description="Entdecke unsere frisch gegrillten Spezialitäten."
@@ -92,36 +60,12 @@ export default function LandingPage() {
description="Wähle das perfekte Menü für dich."
plans={[
{
- id: "s1",
- price: "9,90 €",
- name: "Döner Menü",
- features: [
- "Döner",
- "Pommes",
- "Getränk",
- ],
- buttons: [
- {
- text: "Wählen",
- href: "#",
- },
- ],
+ id: "s1", price: "9,90 €", name: "Döner Menü", features: ["Döner", "Pommes", "Getränk"],
+ buttons: [{ text: "Wählen", href: "#" }],
},
{
- id: "s2",
- price: "11,90 €",
- name: "Grill Menü",
- features: [
- "Grillteller",
- "Salat",
- "Brot",
- ],
- buttons: [
- {
- text: "Wählen",
- href: "#",
- },
- ],
+ id: "s2", price: "11,90 €", name: "Grill Menü", features: ["Grillteller", "Salat", "Brot"],
+ buttons: [{ text: "Wählen", href: "#" }],
},
]}
/>
@@ -130,30 +74,8 @@ export default function LandingPage() {