diff --git a/src/app/page.tsx b/src/app/page.tsx
index 89f16d4..8be42b8 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -29,26 +29,11 @@ export default function LandingPage() {
@@ -56,43 +41,18 @@ export default function LandingPage() {
@@ -103,12 +63,7 @@ export default function LandingPage() {
useInvertedBackground={true}
tag="Our Story"
title="More Than Just A Diner"
- buttons={[
- {
- text: "Visit Us Today",
- href: "#contact",
- },
- ]}
+ buttons={[{ text: "Visit Us Today", href: "#contact" }]}
/>
@@ -117,63 +72,26 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
- useInvertedBackground={false}
+ title="Our Menu"
+ description="Discover our curated selection of hot lunches, sandwiches, and refreshments."
products={[
- {
- id: "p1",
- name: "Buffalo Crispy Chicken",
- price: "$16",
- imageSrc: "http://img.b2bpic.net/free-photo/lassic-hamburger-with-sesame-bun_140725-4151.jpg",
- imageAlt: "Buffalo Chicken Sandwich",
- },
- {
- id: "p2",
- name: "Roundabout Omelet",
- price: "$14",
- imageSrc: "http://img.b2bpic.net/free-photo/traditional-venezuelan-beef-cachapa-wooden-table_123827-23020.jpg",
- imageAlt: "Signature Omelet",
- },
- {
- id: "p3",
- name: "Classic Fish & Chips",
- price: "$18",
- imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-with-cheese-plate-grey-table-copy-place_140725-85350.jpg",
- imageAlt: "Fish and Chips",
- },
+ { id: "c1", name: "Classic Hot Lunch: Roasted Chicken", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-with-cheese-plate-grey-table-copy-place_140725-85350.jpg" },
+ { id: "c2", name: "Hot Panini: Caprese Melt", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-cheese-vegetables-wooden-table_23-2148454583.jpg" },
+ { id: "c3", name: "Hot Sandwich: Signature BLT", price: "$13", imageSrc: "http://img.b2bpic.net/free-photo/tasty-sandwich-with-fresh-vegetables_23-2148813735.jpg" },
+ { id: "c4", name: "Fresh Garden Salad", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/fresh-healthy-salad-with-fresh-vegetables_114579-24755.jpg" },
+ { id: "c5", name: "Kids Meal: Mini Cheeseburger", price: "$9", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cheeseburger-with-fries_23-2149071485.jpg" },
+ { id: "c6", name: "Cold & Hot Drinks", price: "$4", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-beans-table_23-2148216393.jpg" },
]}
- title="Signature Flavors"
- description="Discover the dishes that keep our guests coming back. From crispy chicken sandwiches to our famous signature omelets, our diverse menu has something special for everyone."
/>
@@ -184,23 +102,12 @@ export default function LandingPage() {
animationType="slide-up"
useInvertedBackground={false}
faqs={[
- {
- id: "q1",
- title: "Do you offer gluten-free options?",
- content: "Absolutely! We cater to all dietary needs and are proud of our specialized gluten-free menu items.",
- },
- {
- id: "q2",
- title: "Are you open all day?",
- content: "Yes, we serve breakfast, lunch, and dinner throughout our operating hours to ensure you get your fix whenever you visit.",
- },
+ { id: "q1", title: "Do you have kids meals?", content: "Yes, we have a specialized menu for our little guests including mini burgers and healthy bites." },
+ { id: "q2", title: "Are drinks included?", content: "We offer a full menu of hot and cold artisan drinks that can be added to any meal." },
]}
ctaTitle="Ready to Experience Roundabout?"
ctaDescription="Join us for a mid-week breakfast or a cozy weekend lunch. We can't wait to welcome you to our table."
- ctaButton={{
- text: "Get Directions",
- href: "#",
- }}
+ ctaButton={{ text: "Get Directions", href: "#" }}
ctaIcon={MapPin}
/>
@@ -208,36 +115,8 @@ export default function LandingPage() {