84 lines
2.9 KiB
TypeScript
84 lines
2.9 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
|
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
|
|
export default function AcademyPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="expand-hover"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="large"
|
|
background="circleGradient"
|
|
cardStyle="gradient-bordered"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<ReactLenis root>
|
|
<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" },
|
|
]}
|
|
brandName="Roastery Lab"
|
|
/>
|
|
</div>
|
|
|
|
<div id="academy-details" data-section="academy-details">
|
|
<FeatureCardTen
|
|
animationType="slide-up"
|
|
textboxLayout="split"
|
|
useInvertedBackground={true}
|
|
features={[
|
|
{
|
|
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,
|
|
},
|
|
{
|
|
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,
|
|
},
|
|
]}
|
|
title="Learn Coffee With Us"
|
|
description="Mastering roasting and brewing with our experts."
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqSplitMedia
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
title="Academy FAQ"
|
|
description="Common questions."
|
|
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." }]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoReveal
|
|
logoText="Roastery Lab"
|
|
leftLink={{ text: "Privacy Policy", href: "#" }}
|
|
rightLink={{ text: "Instagram", href: "#" }}
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |