Update src/app/about/page.tsx

This commit is contained in:
2026-04-11 17:26:16 +00:00
parent 032f64a81a
commit 9a815aa044

View File

@@ -7,7 +7,7 @@ import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
export default function LandingPage() { export default function AboutPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="expand-hover" defaultButtonVariant="expand-hover"
@@ -25,30 +25,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "About", id: "/about" },
id: "/", { name: "Coffee", id: "/menu" },
}, { name: "Roastery", id: "/academy" },
{ { name: "Reviews", id: "/reviews" },
name: "About", { name: "Contact", id: "/contact" },
id: "/about",
},
{
name: "Coffee",
id: "/menu",
},
{
name: "Roastery",
id: "/academy",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Contact",
id: "/contact",
},
]} ]}
brandName="Roastery Lab" brandName="Roastery Lab"
/> />
@@ -66,13 +48,7 @@ export default function LandingPage() {
layout="section" layout="section"
title="Our Roasting Standards" title="Our Roasting Standards"
sections={[ sections={[
{ { heading: "Sourcing", content: { type: "paragraph", text: "We source direct from farmers." } },
heading: "Sourcing",
content: {
type: "paragraph",
text: "We source direct from farmers.",
},
},
]} ]}
/> />
</div> </div>
@@ -80,17 +56,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoReveal <FooterLogoReveal
logoText="Roastery Lab" logoText="Roastery Lab"
leftLink={{ leftLink={{ text: "Privacy Policy", href: "#" }}
text: "Privacy Policy", rightLink={{ text: "Instagram", href: "#" }}
href: "#",
}}
rightLink={{
text: "Instagram",
href: "#",
}}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }