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