Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-04-08 18:20:49 +00:00

View File

@@ -23,61 +23,63 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Book a Table", href: "/contact"}}
brandName="Aura Bistro"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Book a Table", href: "/contact" }}
brandName="Aura Bistro"
/>
</div>
<div id="about-story" data-section="about-story">
<TestimonialAboutCard
useInvertedBackground={false}
tag="Our Heritage"
title="Crafting Memories"
description="Born from a passion for authentic flavors and meticulous service, Aura Bistro has redefined local dining."
subdescription="Our journey began with a simple belief: every meal should be a masterpiece. Using sustainably sourced, seasonal ingredients, we curate an experience that engages every sense."
icon={Award}
imageSrc="http://img.b2bpic.net/free-photo/close-up-group-friends-restaurant_23-2148395396.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="about-story" data-section="about-story">
<TestimonialAboutCard
useInvertedBackground={false}
tag="Our Heritage"
title="Crafting Memories"
description="Born from a passion for authentic flavors and meticulous service, Aura Bistro has redefined local dining."
subdescription="Our journey began with a simple belief: every meal should be a masterpiece. Using sustainably sourced, seasonal ingredients, we curate an experience that engages every sense."
icon={Award}
imageSrc="http://img.b2bpic.net/free-photo/close-up-group-friends-restaurant_23-2148395396.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Meet the Team"
description="The creative minds behind every plate."
groups={[
{
id: "kitchen", groupTitle: "Kitchen Staff", members: [
{
id: "m1", title: "Marco", subtitle: "Head Chef", detail: "A passion for flavor."},
{
id: "m2", title: "Elena", subtitle: "Pastry Chef", detail: "Sweet perfection."},
],
imageSrc: "http://img.b2bpic.net/free-photo/wine-bar-interior-with-bottle-counter_23-2152024848.jpg", imageAlt: "sophisticated cocktail elegant glass"},
]}
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Meet the Team"
description="The creative minds behind every plate."
groups={[
{
id: "kitchen", groupTitle: "Kitchen Staff", members: [
{
id: "m1", title: "Marco", subtitle: "Head Chef", detail: "A passion for flavor."
},
{
id: "m2", title: "Elena", subtitle: "Pastry Chef", detail: "Sweet perfection."
},
],
imageSrc: "http://img.b2bpic.net/free-photo/wine-bar-interior-with-bottle-counter_23-2152024848.jpg", imageAlt: "sophisticated cocktail elegant glass"
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Aura Bistro"
copyrightText="© 2025 Aura Bistro. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Aura Bistro"
copyrightText="© 2025 Aura Bistro. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);