Update src/app/about/page.tsx

This commit is contained in:
2026-05-11 07:48:05 +00:00
parent b3047363ce
commit 9531a2de01

View File

@@ -7,33 +7,28 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Our Coffee",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Our Coffee", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="BrewCraft"
/>
@@ -58,20 +53,11 @@ export default function LandingPage() {
description="The people behind your coffee."
groups={[
{
id: "g1",
groupTitle: "Roasting",
members: [
{
id: "m1",
title: "Alex",
subtitle: "Head Roaster",
detail: "10 years experience",
imageSrc: "http://img.b2bpic.net/free-photo/tattooed-barista-holds-blank-package-bags-with-freshly-baked-coffee-beans-ready-sale-deliverybrewing_346278-737.jpg",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/hand-barista-making-coffee-using-coffee-machine-cafe_181624-3313.jpg?_wi=2",
imageAlt: "Tattooed barista holds blank package bags with freshly baked coffee beans ready for sale and deliverybrewing",
},
id: "g1", groupTitle: "Roasting", members: [
{ id: "m1", title: "Alex", subtitle: "Head Roaster", detail: "10 years experience", imageSrc: "http://img.b2bpic.net/free-photo/tattooed-barista-holds-blank-package-bags-with-freshly-baked-coffee-beans-ready-sale-deliverybrewing_346278-737.jpg" },
{ id: "m2", title: "Sam", subtitle: "Lead Roaster", detail: "8 years experience", imageSrc: "http://img.b2bpic.net/free-photo/hand-barista-making-coffee-using-coffee-machine-cafe_181624-3313.jpg" }
]
}
]}
/>
</div>
@@ -79,17 +65,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="BrewCraft"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
rightLink={{
text: "Contact",
href: "/contact",
}}
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Contact", href: "/contact" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}