2 Commits

Author SHA1 Message Date
c13e5e8e70 Update src/app/page.tsx 2026-03-29 12:54:52 +00:00
c80921ad75 Update src/app/page.tsx 2026-03-29 12:54:22 +00:00

View File

@@ -29,26 +29,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ { name: "Home", id: "#hero" },
name: "Home", { name: "About", id: "#about" },
id: "#hero", { name: "Menu", id: "#menu" },
}, { name: "Reviews", id: "#reviews" },
{ { name: "Contact", id: "#contact" },
name: "About",
id: "#about",
},
{
name: "Menu",
id: "#menu",
},
{
name: "Reviews",
id: "#reviews",
},
{
name: "Contact",
id: "#contact",
},
]} ]}
brandName="Roundabout" brandName="Roundabout"
/> />
@@ -56,43 +41,18 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCentered <HeroCentered
background={{ background={{ variant: "gradient-bars" }}
variant: "gradient-bars",
}}
title="A Taste of Belonging" title="A Taste of Belonging"
description="Experience exceptional flavors in a cozy, warm atmosphere where every guest feels like family. From artisan breakfasts to gourmet lunches, we craft memories, one plate at a time." description="Experience exceptional flavors in a cozy, warm atmosphere where every guest feels like family. From artisan breakfasts to gourmet lunches, we craft memories, one plate at a time."
avatars={[ avatars={[
{ { src: "http://img.b2bpic.net/free-photo/happy-close-up-portrait-beautiful-black-skinned-woman-wearing-blouse-flower-headband-enjoying-dinner-while-eating-restaurant_613910-18781.jpg", alt: "Customer" },
src: "http://img.b2bpic.net/free-photo/happy-close-up-portrait-beautiful-black-skinned-woman-wearing-blouse-flower-headband-enjoying-dinner-while-eating-restaurant_613910-18781.jpg", { src: "http://img.b2bpic.net/free-photo/medium-shot-women-with-burgers-fries_23-2148975049.jpg", alt: "Customer" },
alt: "Customer Sarah", { src: "http://img.b2bpic.net/free-photo/young-woman-holding-cup-warm-coffee-park_1303-25035.jpg", alt: "Customer" },
},
{
src: "http://img.b2bpic.net/free-photo/medium-shot-women-with-burgers-fries_23-2148975049.jpg",
alt: "Customer Michael",
},
{
src: "http://img.b2bpic.net/free-photo/young-woman-holding-cup-warm-coffee-park_1303-25035.jpg",
alt: "Customer Emily",
},
{
src: "http://img.b2bpic.net/free-photo/express-your-happiness-contemporary-technology_329181-11348.jpg",
alt: "Customer David",
},
{
src: "http://img.b2bpic.net/free-photo/cheese-plate-with-crackers_140725-3367.jpg",
alt: "Customer Robert",
},
]} ]}
avatarText="Loved by 1000+ local foodies" avatarText="Loved by 1000+ local foodies"
buttons={[ buttons={[
{ { text: "View Our Menu", href: "#menu" },
text: "View Our Menu", { text: "Book Your Table", href: "#contact" },
href: "#menu",
},
{
text: "Book Your Table",
href: "#contact",
},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />
@@ -103,12 +63,7 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
tag="Our Story" tag="Our Story"
title="More Than Just A Diner" title="More Than Just A Diner"
buttons={[ buttons={[{ text: "Visit Us Today", href: "#contact" }]}
{
text: "Visit Us Today",
href: "#contact",
},
]}
/> />
</div> </div>
@@ -117,63 +72,27 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
title="Our Menu"
description="Discover our curated selection of hot lunches, sandwiches, and refreshments."
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ { 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: "p1", { 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" },
name: "Buffalo Crispy Chicken", { id: "c3", name: "Hot Sandwich: Signature BLT", price: "$13", imageSrc: "http://img.b2bpic.net/free-photo/tasty-sandwich-with-fresh-vegetables_23-2148813735.jpg" },
price: "$16", { id: "c4", name: "Fresh Garden Salad", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/fresh-healthy-salad-with-fresh-vegetables_114579-24755.jpg" },
imageSrc: "http://img.b2bpic.net/free-photo/lassic-hamburger-with-sesame-bun_140725-4151.jpg", { id: "c5", name: "Kids Meal: Mini Cheeseburger", price: "$9", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cheeseburger-with-fries_23-2149071485.jpg" },
imageAlt: "Buffalo Chicken Sandwich", { id: "c6", name: "Cold & Hot Drinks", price: "$4", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-beans-table_23-2148216393.jpg" },
},
{
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",
},
]} ]}
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."
/> />
</div> </div>
<div id="reviews" data-section="reviews"> <div id="reviews" data-section="reviews">
<TestimonialCardFifteen <TestimonialCardFifteen
useInvertedBackground={true} useInvertedBackground={true}
testimonial="I have nothing but amazing things to say about this place! The portions, prices and quality of food was awesome. We had amazing service, the place was clean and we even enjoyed the music." testimonial="I have nothing but amazing things to say about this place! The portions, prices and quality of food was awesome."
rating={5} rating={5}
author="Kristen Bassi" author="Kristen Bassi"
avatars={[ avatars={[]}
{
src: "http://img.b2bpic.net/free-photo/happy-close-up-portrait-beautiful-black-skinned-woman-wearing-blouse-flower-headband-enjoying-dinner-while-eating-restaurant_613910-18781.jpg",
alt: "Kristen",
},
{
src: "http://img.b2bpic.net/free-photo/medium-shot-women-with-burgers-fries_23-2148975049.jpg",
alt: "Michael",
},
{
src: "http://img.b2bpic.net/free-photo/young-woman-holding-cup-warm-coffee-park_1303-25035.jpg",
alt: "Emily",
},
{
src: "http://img.b2bpic.net/free-photo/express-your-happiness-contemporary-technology_329181-11348.jpg",
alt: "David",
},
{
src: "http://img.b2bpic.net/free-photo/cheese-plate-with-crackers_140725-3367.jpg",
alt: "Robert",
},
]}
ratingAnimation="blur-reveal" ratingAnimation="blur-reveal"
avatarsAnimation="slide-up" avatarsAnimation="slide-up"
/> />
@@ -184,23 +103,12 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ { 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: "q1", { 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." },
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.",
},
]} ]}
ctaTitle="Ready to Experience Roundabout?" 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." ctaDescription="Join us for a mid-week breakfast or a cozy weekend lunch. We can't wait to welcome you to our table."
ctaButton={{ ctaButton={{ text: "Get Directions", href: "#" }}
text: "Get Directions",
href: "#",
}}
ctaIcon={MapPin} ctaIcon={MapPin}
/> />
</div> </div>
@@ -208,36 +116,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseReveal
columns={[ columns={[
{ { title: "Menu", items: [{ label: "Hot Lunch", href: "#menu" }, { label: "Salads", href: "#menu" }, { label: "Kids Meals", href: "#menu" }] },
title: "Connect", { title: "Visit Us", items: [{ label: "123 Main Street", href: "#" }, { label: "Open Daily 7 AM - 9 PM", href: "#" }] },
items: [
{
label: "Facebook",
href: "#",
},
{
label: "Instagram",
href: "#",
},
{
label: "Reservations",
href: "#",
},
],
},
{
title: "Visit Us",
items: [
{
label: "123 Main Street, West Springfield",
href: "#",
},
{
label: "Open Daily 7 AM - 9 PM",
href: "#",
},
],
},
]} ]}
copyrightText="© 2024 Roundabout Restaurant" copyrightText="© 2024 Roundabout Restaurant"
/> />
@@ -245,4 +125,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }