Update src/app/about/page.tsx

This commit is contained in:
2026-04-08 18:20:18 +00:00
parent ba926f277c
commit 013620a42c

View File

@@ -26,35 +26,15 @@ export default function LandingPage() {
<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",
},
{ 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",
}}
text: "Book a Table", href: "/contact"}}
brandName="Aura Bistro"
/>
</div>
@@ -67,7 +47,7 @@ export default function LandingPage() {
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?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/close-up-group-friends-restaurant_23-2148395396.jpg"
mediaAnimation="slide-up"
/>
</div>
@@ -81,25 +61,13 @@ export default function LandingPage() {
description="The creative minds behind every plate."
groups={[
{
id: "kitchen",
groupTitle: "Kitchen Staff",
members: [
id: "kitchen", groupTitle: "Kitchen Staff", members: [
{
id: "m1",
title: "Marco",
subtitle: "Head Chef",
detail: "A passion for flavor.",
},
id: "m1", title: "Marco", subtitle: "Head Chef", detail: "A passion for flavor."},
{
id: "m2",
title: "Elena",
subtitle: "Pastry Chef",
detail: "Sweet perfection.",
},
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?_wi=1",
imageAlt: "sophisticated cocktail elegant glass",
},
imageSrc: "http://img.b2bpic.net/free-photo/wine-bar-interior-with-bottle-counter_23-2152024848.jpg", imageAlt: "sophisticated cocktail elegant glass"},
]}
/>
</div>
@@ -113,4 +81,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}