Update src/app/about/page.tsx

This commit is contained in:
2026-05-28 17:00:06 +00:00
parent fe9f2246db
commit 178dad26e4

View File

@@ -26,27 +26,17 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Menu",
id: "/menu",
},
name: "Menu", id: "/menu"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="La Unión Restaurant"
button={{
text: "Order Now",
href: "/menu",
}}
text: "Order Now", href: "/menu"}}
/>
</div>
@@ -68,23 +58,11 @@ export default function LandingPage() {
membersAnimation="slide-up"
members={[
{
id: "1",
name: "Chef Elena Rodriguez",
imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-angry-expression_1194-1419.jpg",
imageAlt: "Chef Elena Rodriguez",
},
id: "1", name: "Chef Elena Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-angry-expression_1194-1419.jpg", imageAlt: "Chef Elena Rodriguez"},
{
id: "2",
name: "Chef Marco Ramirez",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg",
imageAlt: "Chef Marco Ramirez",
},
id: "2", name: "Chef Marco Ramirez", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg", imageAlt: "Chef Marco Ramirez"},
{
id: "3",
name: "Chef Sofia Perez",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-man-posing-winter-holidays_140725-138653.jpg",
imageAlt: "Chef Sofia Perez",
},
id: "3", name: "Chef Sofia Perez", imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-man-posing-winter-holidays_140725-138653.jpg", imageAlt: "Chef Sofia Perez"},
]}
memberVariant="card"
/>
@@ -92,53 +70,36 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
itemClassName="font-semibold text-lg hover:text-primary-cta transition-colors duration-200"
columns={[
{
items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "Menu",
href: "/menu",
},
label: "Menu", href: "/menu"},
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
items: [
{
label: "Order Online",
href: "/menu",
},
label: "Order Online", href: "/menu"},
{
label: "Reservations",
href: "/contact",
},
label: "Reservations", href: "/contact"},
{
label: "Catering",
href: "/contact",
},
label: "Catering", href: "/contact"},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
@@ -148,4 +109,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}