Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-07 20:28:21 +00:00

View File

@@ -29,21 +29,13 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "hero",
},
name: "Home", id: "hero"},
{
name: "Menu",
id: "menu",
},
name: "Menu", id: "menu"},
{
name: "Our Story",
id: "about",
},
name: "Our Story", id: "about"},
{
name: "Visit Us",
id: "contact",
},
name: "Visit Us", id: "contact"},
]}
brandName="Taim"
/>
@@ -55,13 +47,9 @@ export default function LandingPage() {
description="Londons hidden gem for authentic falafel, rich coffee, and unforgettable hospitality."
buttons={[
{
text: "View Menu",
href: "#menu",
},
text: "View Menu", href: "#menu"},
{
text: "Visit Us",
href: "#contact",
},
text: "Visit Us", href: "#contact"},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/woman-sitting-around-kutab-table-with-pear-dushes_114579-2337.jpg"
@@ -75,14 +63,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
"The London Times",
"Eater London",
"Timeout London",
"The Guardian",
"London Foodie",
"Standard Magazine",
"Daily Telegraph",
]}
"The London Times", "Eater London", "Timeout London", "The Guardian", "London Foodie", "Standard Magazine", "Daily Telegraph"]}
title="Loved by Everyone"
description="Rated 5 stars by London's top critics and local food enthusiasts."
/>
@@ -96,53 +77,15 @@ export default function LandingPage() {
useInvertedBackground={true}
products={[
{
id: "1",
name: "Falafel Wrap",
price: "£8.50",
variant: "Authentic",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-if-chicken-bread-roll-with-vegetables-wooden-board_140725-11825.jpg?_wi=1",
imageAlt: "Falafel Wrap",
},
id: "1", name: "Falafel Wrap", price: "£8.50", variant: "Authentic", imageSrc: "http://img.b2bpic.net/free-photo/side-view-if-chicken-bread-roll-with-vegetables-wooden-board_140725-11825.jpg?_wi=1", imageAlt: "Falafel Wrap"},
{
id: "2",
name: "Halloumi Wrap",
price: "£9.00",
variant: "Grilled",
imageSrc: "http://img.b2bpic.net/free-photo/vegetables-pickles-wrapped-lavash_140725-6372.jpg?_wi=1",
imageAlt: "Halloumi Wrap",
},
id: "2", name: "Classic Hummus", price: "£6.00", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/side-view-if-chicken-bread-roll-with-vegetables-wooden-board_140725-11825.jpg?_wi=2", imageAlt: "Classic Hummus"},
{
id: "3",
name: "Coffee & Sweets",
price: "£5.50",
variant: "Pairing",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chocolate-desserts-slate_23-2148689805.jpg?_wi=1",
imageAlt: "Coffee and Sweets",
},
id: "3", name: "Fresh Falafel Plate", price: "£10.50", variant: "Signature", imageSrc: "https://img.freepik.com/free-photo/fried-falafel-balls-with-tahini-sauce-plate_23-2148560067.jpg", imageAlt: "Fresh Falafel Plate"},
{
id: "4",
name: "Classic Hummus",
price: "£6.00",
variant: "Signature",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-if-chicken-bread-roll-with-vegetables-wooden-board_140725-11825.jpg?_wi=2",
imageAlt: "Classic Hummus",
},
id: "4", name: "Taim Special Salad", price: "£7.50", variant: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/vegetables-pickles-wrapped-lavash_140725-6372.jpg?_wi=2", imageAlt: "Taim Special Salad"},
{
id: "5",
name: "Taim Special Salad",
price: "£7.50",
variant: "Fresh",
imageSrc: "http://img.b2bpic.net/free-photo/vegetables-pickles-wrapped-lavash_140725-6372.jpg?_wi=2",
imageAlt: "Taim Special Salad",
},
{
id: "6",
name: "Baklava Box",
price: "£6.50",
variant: "Sweets",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chocolate-desserts-slate_23-2148689805.jpg?_wi=2",
imageAlt: "Baklava Box",
},
id: "5", name: "Baklava Box", price: "£6.50", variant: "Sweets", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chocolate-desserts-slate_23-2148689805.jpg?_wi=2", imageAlt: "Baklava Box"},
]}
title="Signature Favourites"
description="Our hand-selected menu of authentic, handcrafted delights."
@@ -163,8 +106,7 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={true}
background={{
variant: "canvas-reveal",
}}
variant: "canvas-reveal"}}
tag="Visit Us"
title="Come Experience It Yourself"
description="Fresh. Authentic. Unforgettable. Find us in the heart of London."
@@ -176,33 +118,21 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Navigate",
items: [
title: "Navigate", items: [
{
label: "Menu",
href: "#menu",
},
label: "Menu", href: "#menu"},
{
label: "Story",
href: "#about",
},
label: "Story", href: "#about"},
{
label: "Directions",
href: "#contact",
},
label: "Directions", href: "#contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
@@ -213,4 +143,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}