Update src/app/about/page.tsx
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user