5 Commits

Author SHA1 Message Date
50a1aa9d38 Merge version_4 into main
Merge version_4 into main
2026-04-28 08:47:29 +00:00
9099616c89 Update src/app/page.tsx 2026-04-28 08:47:26 +00:00
b514e31b9e Merge version_3 into main
Merge version_3 into main
2026-04-28 08:46:34 +00:00
fc0d314554 Update src/app/page.tsx 2026-04-28 08:46:28 +00:00
911628f386 Merge version_2 into main
Merge version_2 into main
2026-04-28 08:42:35 +00:00

View File

@@ -50,11 +50,6 @@ export default function LandingPage() {
variant: "plain"}} variant: "plain"}}
title="Taste the Real Oradea Experience" title="Taste the Real Oradea Experience"
description="Authentic, flame-grilled burgers crafted with love and locally sourced ingredients. Discover the difference quality makes." description="Authentic, flame-grilled burgers crafted with love and locally sourced ingredients. Discover the difference quality makes."
buttons={[
{
text: "Order Now", href: "#products"
}
]}
mediaItems={[ mediaItems={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/meat-burger-wooden-board-lettuce-tomato-cheese-french-fries-ketchup-side-view_141793-3157.jpg", imageAlt: "Juicy Beef Burger"}, imageSrc: "http://img.b2bpic.net/free-photo/meat-burger-wooden-board-lettuce-tomato-cheese-french-fries-ketchup-side-view_141793-3157.jpg", imageAlt: "Juicy Beef Burger"},
@@ -86,17 +81,17 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ {
id: "p1", name: "Classic Burger", price: "29 RON", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-composition_23-2148868219.jpg"}, id: "p1", name: "Classic Burger", price: "29 RON", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-composition_23-2148868219.jpg", onProductClick: () => alert('Order Placed!')},
{ {
id: "p2", name: "Bacon Deluxe", price: "35 RON", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-hamburger-with-copy-space_23-2148614102.jpg"}, id: "p2", name: "Bacon Deluxe", price: "35 RON", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-hamburger-with-copy-space_23-2148614102.jpg", onProductClick: () => alert('Order Placed!')},
{ {
id: "p3", name: "Chicken Crunch", price: "32 RON", imageSrc: "http://img.b2bpic.net/free-photo/chicken-burger-with-fried-apple-shape-potatoes_140725-4534.jpg"}, id: "p3", name: "Chicken Crunch", price: "32 RON", imageSrc: "http://img.b2bpic.net/free-photo/chicken-burger-with-fried-apple-shape-potatoes_140725-4534.jpg", onProductClick: () => alert('Order Placed!')},
{ {
id: "p4", name: "Veggie Delight", price: "30 RON", imageSrc: "http://img.b2bpic.net/free-photo/close-up-vegetarian-burger-cutting-board_23-2148784533.jpg"}, id: "p4", name: "Veggie Delight", price: "30 RON", imageSrc: "http://img.b2bpic.net/free-photo/close-up-vegetarian-burger-cutting-board_23-2148784533.jpg", onProductClick: () => alert('Order Placed!')},
{ {
id: "p5", name: "Spicy Inferno", price: "38 RON", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-meat-hamburger-with-red-tomatoes-dark-background_179666-19342.jpg"}, id: "p5", name: "Spicy Inferno", price: "38 RON", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-meat-hamburger-with-red-tomatoes-dark-background_179666-19342.jpg", onProductClick: () => alert('Order Placed!')},
{ {
id: "p6", name: "Double Trouble", price: "45 RON", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-steam-grilled-sandwich-with-melted-cheese-salad-side_181624-45342.jpg"}, id: "p6", name: "Double Trouble", price: "45 RON", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-steam-grilled-sandwich-with-melted-cheese-salad-side_181624-45342.jpg", onProductClick: () => alert('Order Placed!')},
]} ]}
title="Our Signature Burgers" title="Our Signature Burgers"
description="Hand-crafted with 100% fresh beef and fresh-baked buns daily." description="Hand-crafted with 100% fresh beef and fresh-baked buns daily."
@@ -166,7 +161,7 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
{ {
id: "q1", title: "Do you deliver?", content: "Yes, we cover the whole city of Oradea."}, id: "q1", title: "Do you deliver?", content: "Yes, we cover the whole city of Oradea via Glovo and Tazz."},
{ {
id: "q2", title: "Are you open on Sundays?", content: "We are open 7 days a week, 11 AM - 10 PM."}, id: "q2", title: "Are you open on Sundays?", content: "We are open 7 days a week, 11 AM - 10 PM."},
{ {
@@ -217,4 +212,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }