From 155f6fd08982c32e06a7558f7e7cf94a7a42cb21 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 19:39:09 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 218 +++++++---------------------------------------- 1 file changed, 32 insertions(+), 186 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7bedf89..7aa91a7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,130 +30,40 @@ export default function LandingPage() {
@@ -164,42 +74,12 @@ export default function LandingPage() { gridVariant="bento-grid" useInvertedBackground={false} products={[ - { - id: "1", - name: "Classic Cheeseburger", - price: "$8.99", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-double-cheeseburger-with-melted-cheese_84443-86133.jpg", - }, - { - id: "2", - name: "Bacon BBQ Delight", - price: "$10.49", - imageSrc: "http://img.b2bpic.net/free-photo/male-s-hands-holding-delicious-double-cheeseburger_181624-56398.jpg", - }, - { - id: "3", - name: "Spicy Jalapeño Kick", - price: "$9.99", - imageSrc: "http://img.b2bpic.net/free-photo/cheeseburger-bun-lettuce-beef-meal_1122-2435.jpg", - }, - { - id: "4", - name: "Garden Veggie Patty", - price: "$9.49", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-veggie-dishes-still-life_23-2151160890.jpg", - }, - { - id: "5", - name: "Double Smash Burger", - price: "$12.99", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-beef-burgers-with-bacon-slate-board_23-2148784477.jpg", - }, - { - id: "6", - name: "Crispy Chicken Joy", - price: "$9.99", - imageSrc: "http://img.b2bpic.net/free-photo/american-burger-with-chicken-bacon-homemade-barbecue-sauce_2829-13703.jpg", - }, + { id: "1", name: "Classic Cheeseburger", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/delicious-double-cheeseburger-with-melted-cheese_84443-86133.jpg" }, + { id: "2", name: "Bacon BBQ Delight", price: "$10.49", imageSrc: "http://img.b2bpic.net/free-photo/male-s-hands-holding-delicious-double-cheeseburger_181624-56398.jpg" }, + { id: "3", name: "Spicy Jalapeño Kick", price: "$9.99", imageSrc: "http://img.b2bpic.net/free-photo/cheeseburger-bun-lettuce-beef-meal_1122-2435.jpg" }, + { id: "4", name: "Garden Veggie Patty", price: "$9.49", imageSrc: "http://img.b2bpic.net/free-photo/delicious-veggie-dishes-still-life_23-2151160890.jpg" }, + { id: "5", name: "Double Smash Burger", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-beef-burgers-with-bacon-slate-board_23-2148784477.jpg" }, + { id: "6", name: "Crispy Chicken Joy", price: "$9.99", imageSrc: "http://img.b2bpic.net/free-photo/american-burger-with-chicken-bacon-homemade-barbecue-sauce_2829-13703.jpg" }, ]} title="Our Signature Burgers" description="Hand-crafted using the finest ingredients. Choose your flavor." @@ -221,21 +101,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - icon: Flame, - title: "Flame-Grilled", - description: "Authentic wood-fired taste in every single patty.", - }, - { - icon: Beef, - title: "Prime Beef", - description: "100% locally sourced, grass-fed beef.", - }, - { - icon: LeafyGreen, - title: "Fresh Produce", - description: "Crisp vegetables delivered fresh every single morning.", - }, + { icon: Flame, title: "Flame-Grilled", description: "Authentic wood-fired taste in every single patty." }, + { icon: Beef, title: "Prime Beef", description: "100% locally sourced, grass-fed beef." }, + { icon: LeafyGreen, title: "Fresh Produce", description: "Crisp vegetables delivered fresh every single morning." }, ]} title="The BurgerJoy Difference" description="What makes our burgers stand out from the rest." @@ -247,21 +115,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} faqs={[ - { - id: "1", - title: "Do you offer vegan options?", - content: "Yes! Our Garden Veggie patty is plant-based and delicious.", - }, - { - id: "2", - title: "Can I customize my burger?", - content: "Absolutely. You can add, remove, or swap any ingredients you like.", - }, - { - id: "3", - title: "Do you offer delivery?", - content: "We do, via all major delivery platforms in the area.", - }, + { id: "1", title: "Do you offer vegan options?", content: "Yes! Our Garden Veggie patty is plant-based and delicious." }, + { id: "2", title: "Can I customize my burger?", content: "Absolutely. You can add, remove, or swap any ingredients you like." }, + { id: "3", title: "Do you offer delivery?", content: "We do, via all major delivery platforms in the area." }, ]} title="Frequently Asked Questions" description="Got questions? We've got answers." @@ -272,31 +128,21 @@ export default function LandingPage() {
-- 2.49.1