Update src/app/page.tsx
This commit is contained in:
317
src/app/page.tsx
317
src/app/page.tsx
@@ -33,27 +33,17 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "#products"},
|
||||||
id: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "#about"},
|
||||||
id: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "#contact"},
|
||||||
id: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Burger Labor"
|
brandName="Burger Labor"
|
||||||
button={{
|
button={{
|
||||||
text: "Order Now",
|
text: "Order Now", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -63,77 +53,38 @@ export default function LandingPage() {
|
|||||||
description="Handcrafted burgers using premium ingredients, served fast without compromising quality. Order online or visit us on Pesti út today."
|
description="Handcrafted burgers using premium ingredients, served fast without compromising quality. Order online or visit us on Pesti út today."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
name: "Sarah J.",
|
name: "Sarah J.", handle: "@burgerfan", testimonial: "Absolutely the best burger I've had in Budapest! Fresh ingredients and cooked to perfection. A must-try on Pesti út!", rating: 5,
|
||||||
handle: "@burgerfan",
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-enjoying-food_23-2149304414.jpg", imageAlt: "Customer Sarah J."},
|
||||||
testimonial: "Absolutely the best burger I've had in Budapest! Fresh ingredients and cooked to perfection. A must-try on Pesti út!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-enjoying-food_23-2149304414.jpg",
|
|
||||||
imageAlt: "Customer Sarah J.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Mark T.",
|
name: "Mark T.", handle: "@foodie_mark", testimonial: "The service is quick, and the quality is consistently top-notch. My go-to spot for a quick and delicious lunch.", rating: 5,
|
||||||
handle: "@foodie_mark",
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-woman-holding-burger_23-2148705547.jpg", imageAlt: "Customer Mark T."},
|
||||||
testimonial: "The service is quick, and the quality is consistently top-notch. My go-to spot for a quick and delicious lunch.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-woman-holding-burger_23-2148705547.jpg",
|
|
||||||
imageAlt: "Customer Mark T.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Emily R.",
|
name: "Emily R.", handle: "@pesti_eats", testimonial: "Burger Labor never disappoints! Their combo deals are fantastic value, and the atmosphere is perfect for casual dining.", rating: 5,
|
||||||
handle: "@pesti_eats",
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businesswoman-her-colleague-toasting-with-champagne-office-party_637285-9569.jpg", imageAlt: "Customer Emily R."},
|
||||||
testimonial: "Burger Labor never disappoints! Their combo deals are fantastic value, and the atmosphere is perfect for casual dining.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businesswoman-her-colleague-toasting-with-champagne-office-party_637285-9569.jpg",
|
|
||||||
imageAlt: "Customer Emily R.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "David L.",
|
name: "David L.", handle: "@chef_dave", testimonial: "You can taste the dedication in every bite. Premium ingredients truly make a difference here. Highly recommend!", rating: 5,
|
||||||
handle: "@chef_dave",
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-fresh-bagel_23-2148361959.jpg", imageAlt: "Customer David L."},
|
||||||
testimonial: "You can taste the dedication in every bite. Premium ingredients truly make a difference here. Highly recommend!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-fresh-bagel_23-2148361959.jpg",
|
|
||||||
imageAlt: "Customer David L.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Anna P.",
|
name: "Anna P.", handle: "@local_guide", testimonial: "Finally, a burger place on Pesti út that delivers on taste and speed. Online ordering is super easy too!", rating: 5,
|
||||||
handle: "@local_guide",
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-courier-red-uniform-cape-holding-food-package-notepad-reading-it-pink-wall-service-delivery-worker-job-uniform_140725-35580.jpg", imageAlt: "Customer Anna P."},
|
||||||
testimonial: "Finally, a burger place on Pesti út that delivers on taste and speed. Online ordering is super easy too!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-courier-red-uniform-cape-holding-food-package-notepad-reading-it-pink-wall-service-delivery-worker-job-uniform_140725-35580.jpg",
|
|
||||||
imageAlt: "Customer Anna P.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Order Now",
|
text: "Order Now", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View Menu",
|
text: "View Menu", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3551.jpg",
|
src: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3551.jpg", alt: "Customer Avatar 1"},
|
||||||
alt: "Customer Avatar 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/blond-business-woman-blue-shirt_23-2148095792.jpg",
|
src: "http://img.b2bpic.net/free-photo/blond-business-woman-blue-shirt_23-2148095792.jpg", alt: "Customer Avatar 2"},
|
||||||
alt: "Customer Avatar 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-senior-man-wearing-glasses-smiling-camera_1262-1857.jpg",
|
src: "http://img.b2bpic.net/free-photo/happy-senior-man-wearing-glasses-smiling-camera_1262-1857.jpg", alt: "Customer Avatar 3"},
|
||||||
alt: "Customer Avatar 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg", alt: "Customer Avatar 4"},
|
||||||
alt: "Customer Avatar 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/closeup-happy-good-looking-young-man_1262-3489.jpg",
|
src: "http://img.b2bpic.net/free-photo/closeup-happy-good-looking-young-man_1262-3489.jpg", alt: "Happy customer avatar"},
|
||||||
alt: "Happy customer avatar",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-hand-pouring-sesame-seeds-beef-burger-with-salad-bacon_23-2148784492.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/front-view-hand-pouring-sesame-seeds-beef-burger-with-salad-bacon_23-2148784492.jpg"
|
||||||
imageAlt="Gourmet Burger on a rustic table"
|
imageAlt="Gourmet Burger on a rustic table"
|
||||||
@@ -149,11 +100,8 @@ export default function LandingPage() {
|
|||||||
title="Serving Up the Best Burgers on Pesti út Since Day One"
|
title="Serving Up the Best Burgers on Pesti út Since Day One"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
description="At Burger Labor, we believe in crafting more than just a meal—we create an experience. Located conveniently on Pesti út, our commitment to quality ingredients, fresh preparation, and a friendly atmosphere sets us apart. Every burger is a labor of love, designed to satisfy your cravings and leave you coming back for more. Come taste the difference!"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -164,41 +112,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "Premium Ingredients", author: "Quality Focus", description: "We source only the freshest, high-quality meats, crisp vegetables, and artisan buns to ensure every bite is exceptional.", tags: [
|
||||||
title: "Premium Ingredients",
|
"Fresh", "Local"],
|
||||||
author: "Quality Focus",
|
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-burger-wooden-board-with-fresh-tomatoes_23-2148238496.jpg", imageAlt: "Fresh ingredients for a burger"},
|
||||||
description: "We source only the freshest, high-quality meats, crisp vegetables, and artisan buns to ensure every bite is exceptional.",
|
|
||||||
tags: [
|
|
||||||
"Fresh",
|
|
||||||
"Local",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-burger-wooden-board-with-fresh-tomatoes_23-2148238496.jpg",
|
|
||||||
imageAlt: "Fresh ingredients for a burger",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "Handcrafted Perfection", author: "Culinary Excellence", description: "Our skilled chefs meticulously prepare each burger, grilling patties to juicy perfection and assembling with care for an unforgettable taste.", tags: [
|
||||||
title: "Handcrafted Perfection",
|
"Artisan", "Cooked to Order"],
|
||||||
author: "Culinary Excellence",
|
imageSrc: "http://img.b2bpic.net/free-photo/waiter-holding-cheese-stuffed-steak-served-wooden-board_140725-5243.jpg", imageAlt: "Chef grilling a burger patty"},
|
||||||
description: "Our skilled chefs meticulously prepare each burger, grilling patties to juicy perfection and assembling with care for an unforgettable taste.",
|
|
||||||
tags: [
|
|
||||||
"Artisan",
|
|
||||||
"Cooked to Order",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/waiter-holding-cheese-stuffed-steak-served-wooden-board_140725-5243.jpg",
|
|
||||||
imageAlt: "Chef grilling a burger patty",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Speedy & Convenient", author: "Your Time Matters", description: "Enjoy delicious food without the wait. Our efficient team ensures quick service for dine-in, takeout, and online orders.", tags: [
|
||||||
title: "Speedy & Convenient",
|
"Fast", "Online Order"],
|
||||||
author: "Your Time Matters",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bipoc-courier-delivering-pizza-order-client-camera-background_482257-82731.jpg", imageAlt: "Food delivery person"},
|
||||||
description: "Enjoy delicious food without the wait. Our efficient team ensures quick service for dine-in, takeout, and online orders.",
|
|
||||||
tags: [
|
|
||||||
"Fast",
|
|
||||||
"Online Order",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bipoc-courier-delivering-pizza-order-client-camera-background_482257-82731.jpg",
|
|
||||||
imageAlt: "Food delivery person",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Why Choose Burger Labor?"
|
title="Why Choose Burger Labor?"
|
||||||
description="Experience the Burger Labor difference with our commitment to quality, speed, and flavor."
|
description="Experience the Burger Labor difference with our commitment to quality, speed, and flavor."
|
||||||
@@ -213,47 +137,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Classic Cheeseburger", price: "2,890 HUF", imageSrc: "http://img.b2bpic.net/free-photo/front-view-burger-with-eggs-vegetables-inside-round-plate_140725-11604.jpg", imageAlt: "Classic Cheeseburger"},
|
||||||
name: "Classic Cheeseburger",
|
|
||||||
price: "2,890 HUF",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-burger-with-eggs-vegetables-inside-round-plate_140725-11604.jpg",
|
|
||||||
imageAlt: "Classic Cheeseburger",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Spicy Chicken Burger", price: "2,990 HUF", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-beef-burger-with-dip_23-2148290674.jpg", imageAlt: "Spicy Chicken Burger"},
|
||||||
name: "Spicy Chicken Burger",
|
|
||||||
price: "2,990 HUF",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-beef-burger-with-dip_23-2148290674.jpg",
|
|
||||||
imageAlt: "Spicy Chicken Burger",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Veggie Delight Burger", price: "2,750 HUF", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegan-burgers-wooden-board_23-2148305745.jpg", imageAlt: "Veggie Delight Burger"},
|
||||||
name: "Veggie Delight Burger",
|
|
||||||
price: "2,750 HUF",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegan-burgers-wooden-board_23-2148305745.jpg",
|
|
||||||
imageAlt: "Veggie Delight Burger",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "BBQ Pulled Pork Burger", price: "3,150 HUF", imageSrc: "http://img.b2bpic.net/free-photo/american-hamburger-with-french-fries_23-2147783579.jpg", imageAlt: "BBQ Pulled Pork Burger"},
|
||||||
name: "BBQ Pulled Pork Burger",
|
|
||||||
price: "3,150 HUF",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/american-hamburger-with-french-fries_23-2147783579.jpg",
|
|
||||||
imageAlt: "BBQ Pulled Pork Burger",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Mushroom Swiss Burger", price: "3,050 HUF", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-tasty-sandwich-with-potatoes-wooden-table-with-sauces-cutlery_181624-56416.jpg", imageAlt: "Mushroom Swiss Burger"},
|
||||||
name: "Mushroom Swiss Burger",
|
|
||||||
price: "3,050 HUF",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-shot-tasty-sandwich-with-potatoes-wooden-table-with-sauces-cutlery_181624-56416.jpg",
|
|
||||||
imageAlt: "Mushroom Swiss Burger",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Crispy Onion Rings", price: "1,200 HUF", imageSrc: "http://img.b2bpic.net/free-photo/fast-food-restaurant-table_7939-2832.jpg", imageAlt: "Crispy Onion Rings"},
|
||||||
name: "Crispy Onion Rings",
|
|
||||||
price: "1,200 HUF",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fast-food-restaurant-table_7939-2832.jpg",
|
|
||||||
imageAlt: "Crispy Onion Rings",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Delicious Menu"
|
title="Our Delicious Menu"
|
||||||
description="Explore our wide selection of mouth-watering burgers, sides, and drinks. There's something for everyone!"
|
description="Explore our wide selection of mouth-watering burgers, sides, and drinks. There's something for everyone!"
|
||||||
@@ -268,20 +162,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "5000+", description: "Happy Customers Served"},
|
||||||
value: "5000+",
|
|
||||||
description: "Happy Customers Served",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "100%", description: "Freshness Guarantee"},
|
||||||
value: "100%",
|
|
||||||
description: "Freshness Guarantee",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", value: "5 Stars", description: "Average Customer Rating"},
|
||||||
value: "5 Stars",
|
|
||||||
description: "Average Customer Rating",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Promise in Numbers"
|
title="Our Promise in Numbers"
|
||||||
description="Discover what makes Burger Labor a local favorite on Pesti út."
|
description="Discover what makes Burger Labor a local favorite on Pesti út."
|
||||||
@@ -295,58 +180,31 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "combo-single",
|
id: "combo-single", badge: "Value Deal", badgeIcon: Sparkles,
|
||||||
badge: "Value Deal",
|
price: "3,990 HUF", subtitle: "Perfect for one person", buttons: [
|
||||||
badgeIcon: Sparkles,
|
|
||||||
price: "3,990 HUF",
|
|
||||||
subtitle: "Perfect for one person",
|
|
||||||
buttons: [
|
|
||||||
{
|
{
|
||||||
text: "Order Now",
|
text: "Order Now", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"1 Burger of Choice",
|
"1 Burger of Choice", "1 Side Dish (Fries/Onion Rings)", "1 Drink"],
|
||||||
"1 Side Dish (Fries/Onion Rings)",
|
|
||||||
"1 Drink",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "combo-double",
|
id: "combo-double", badge: "Best Value", badgeIcon: Star,
|
||||||
badge: "Best Value",
|
price: "7,490 HUF", subtitle: "Great for sharing with a friend", buttons: [
|
||||||
badgeIcon: Star,
|
|
||||||
price: "7,490 HUF",
|
|
||||||
subtitle: "Great for sharing with a friend",
|
|
||||||
buttons: [
|
|
||||||
{
|
{
|
||||||
text: "Order Now",
|
text: "Order Now", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"2 Burgers of Choice",
|
"2 Burgers of Choice", "2 Side Dishes", "2 Drinks"],
|
||||||
"2 Side Dishes",
|
|
||||||
"2 Drinks",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "family-pack",
|
id: "family-pack", badge: "Family Favorite", badgeIcon: Award,
|
||||||
badge: "Family Favorite",
|
price: "12,990 HUF", subtitle: "Ideal for families or small groups", buttons: [
|
||||||
badgeIcon: Award,
|
|
||||||
price: "12,990 HUF",
|
|
||||||
subtitle: "Ideal for families or small groups",
|
|
||||||
buttons: [
|
|
||||||
{
|
{
|
||||||
text: "Order Now",
|
text: "Order Now", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"4 Burgers of Choice",
|
"4 Burgers of Choice", "4 Side Dishes", "4 Drinks"],
|
||||||
"4 Side Dishes",
|
|
||||||
"4 Drinks",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Combo Deals & Family Packs"
|
title="Combo Deals & Family Packs"
|
||||||
@@ -359,14 +217,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
names={[
|
names={[
|
||||||
"Happy Locals",
|
"Happy Locals", "Commuter's Choice", "Office Lunch Favorite", "Family Dining", "Food Blogger Approved", "Pesti út Gem", "Weekend Treat"]}
|
||||||
"Commuter's Choice",
|
|
||||||
"Office Lunch Favorite",
|
|
||||||
"Family Dining",
|
|
||||||
"Food Blogger Approved",
|
|
||||||
"Pesti út Gem",
|
|
||||||
"Weekend Treat",
|
|
||||||
]}
|
|
||||||
title="Our Community Loves Us"
|
title="Our Community Loves Us"
|
||||||
description="Loved by locals, our burgers are a community favorite on Pesti út. Here's why people keep coming back!"
|
description="Loved by locals, our burgers are a community favorite on Pesti út. Here's why people keep coming back!"
|
||||||
/>
|
/>
|
||||||
@@ -376,20 +227,15 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
tag="Ready to Order?"
|
tag="Ready to Order?"
|
||||||
title="Visit Us or Order Online Today!"
|
title="Visit Us or Order Online Today!"
|
||||||
description="Whether you're craving a quick lunch, a family dinner, or looking to make a reservation, Burger Labor is ready to serve you. Find us on Pesti út or place your order now for pickup or delivery."
|
description="Whether you're craving a quick lunch, a family dinner, or looking to make a reservation, Burger Labor is ready to serve you. Find us on Pesti út or place your order now for pickup or delivery."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Order Online",
|
text: "Order Online", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Make a Reservation",
|
text: "Make a Reservation", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -398,58 +244,35 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Menu",
|
title: "Menu", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Burgers",
|
label: "Burgers", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Sides",
|
label: "Sides", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Drinks",
|
label: "Drinks", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Combos",
|
label: "Combos", href: "#pricing"},
|
||||||
href: "#pricing",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About Us",
|
title: "About Us", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Our Story",
|
label: "Our Story", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Our Values",
|
label: "Our Values", href: "#features"},
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Customer Love",
|
label: "Customer Love", href: "#social-proof"},
|
||||||
href: "#social-proof",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Order Online",
|
label: "Order Online", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Reservations",
|
label: "Reservations", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Location: Pesti út",
|
label: "Location: Pesti út", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user