Update src/app/menu/page.tsx

This commit is contained in:
2026-03-29 20:53:18 +00:00
parent 35fc09d743
commit 0d299097ac

View File

@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Über uns",
id: "/about",
},
{
name: "Kontakt",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Über uns", id: "/about" },
{ name: "Kontakt", id: "/contact" },
]}
brandName="Konya Grill"
/>
@@ -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() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Startseite",
href: "/",
},
{
label: "Menü",
href: "/menu",
},
],
},
{
items: [
{
label: "Impressum",
href: "#",
},
{
label: "Datenschutz",
href: "#",
},
],
},
{ items: [{ label: "Startseite", href: "/" }, { label: "Menü", href: "/menu" }] },
{ items: [{ label: "Impressum", href: "#" }, { label: "Datenschutz", href: "#" }] },
]}
logoText="Konya Grill"
/>
@@ -161,4 +83,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}