Update src/app/about/page.tsx

This commit is contained in:
2026-05-14 21:14:54 +00:00
parent 1b5cbb2c37
commit 27c8df9073

View File

@@ -26,26 +26,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Events",
id: "/events",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/contact" },
]}
brandName="Spoorzicht"
/>
@@ -53,15 +38,12 @@ export default function LandingPage() {
<div id="team" data-section="team">
<TeamCardTen
useInvertedBackground={false}
useInvertedBackground={true}
title="Meet the Owners"
tag="History & Heritage"
members={[
{
id: "o1",
name: "Jan & Maria",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-couple-talking-while-eating-lunch-restaurant_637285-9017.jpg",
},
id: "o1", name: "Jan & Maria", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-couple-talking-while-eating-lunch-restaurant_637285-9017.jpg"},
]}
membersAnimation="opacity"
memberVariant="default"
@@ -71,13 +53,11 @@ export default function LandingPage() {
<div id="socialProof" data-section="socialProof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
useInvertedBackground={true}
title="History"
description="Serving guests since 1905 with love and tradition."
names={[
"Local Heritage Association",
"Heerenveen Culinary Board",
]}
"Local Heritage Association", "Heerenveen Culinary Board"]}
/>
</div>
@@ -88,18 +68,14 @@ export default function LandingPage() {
socialLinks={[
{
icon: Facebook,
href: "https://facebook.com/spoorzicht",
ariaLabel: "Facebook",
},
href: "https://facebook.com/spoorzicht", ariaLabel: "Facebook"},
{
icon: Instagram,
href: "https://instagram.com/spoorzicht",
ariaLabel: "Instagram",
},
href: "https://instagram.com/spoorzicht", ariaLabel: "Instagram"},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}