Update src/app/academy/page.tsx

This commit is contained in:
2026-04-11 17:26:17 +00:00
parent 9a815aa044
commit 66fa22ab66

View File

@@ -7,7 +7,7 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() {
export default function AcademyPage() {
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"
/>
@@ -61,26 +43,14 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
title: "Roasting",
description: "Understand the science behind roasting profiles.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/top-view-buckwheats-food-shovels-alongside-them-horizontal_176474-2387.jpg",
},
title: "Roasting", description: "Understand the science behind roasting profiles.", media: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-coffee-background_23-2147776809.jpg", imageAlt: "industrial coffee roasting machine" },
items: [],
reverse: false,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-coffee-background_23-2147776809.jpg?_wi=2",
imageAlt: "industrial coffee roasting machine",
},
{
title: "Brewing",
description: "Hands-on experience with advanced drippers.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-plus-size-man-working-as-barista_23-2150754673.jpg",
},
title: "Brewing", description: "Hands-on experience with advanced drippers.", media: { imageSrc: "http://img.b2bpic.net/free-photo/male-barista-pouring-water-coffee-filter_23-2148824415.jpg", imageAlt: "industrial coffee roasting machine" },
items: [],
reverse: true,
imageSrc: "http://img.b2bpic.net/free-photo/male-barista-pouring-water-coffee-filter_23-2148824415.jpg?_wi=2",
imageAlt: "industrial coffee roasting machine",
},
]}
title="Learn Coffee With Us"
@@ -97,30 +67,18 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-cleaning-machine_23-2149149677.jpg"
mediaAnimation="slide-up"
faqsAnimation="slide-up"
faqs={[
{
id: "1",
title: "Do I need experience?",
content: "No, beginners welcome.",
},
]}
faqs={[{ id: "1", title: "Do I need experience?", content: "No, beginners welcome." }]}
/>
</div>
<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>
</ThemeProvider>
);
}
}