Merge version_2 into main #1
100
src/app/about/page.tsx
Normal file
100
src/app/about/page.tsx
Normal file
@@ -0,0 +1,100 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Coffee, Leaf, Flame, Users, MapPin, Instagram, Facebook, Twitter } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
title="About Brew Haven"
|
||||
description="We are passionate about delivering the finest specialty coffee experience. Our mission is to source the best beans from around the world and craft them into extraordinary beverages. Founded with a commitment to excellence and sustainability, Brew Haven has become a destination for coffee enthusiasts seeking premium quality and exceptional craftsmanship."
|
||||
tag="Our Story"
|
||||
tagIcon={Coffee}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Ethically Sourced", description: "Direct relationships with coffee farmers ensuring fair trade and premium quality beans", icon: Leaf
|
||||
},
|
||||
{
|
||||
title: "Expert Roasting", description: "Small-batch roasting process that brings out the unique flavors and characteristics of each origin", icon: Flame
|
||||
},
|
||||
{
|
||||
title: "Skilled Baristas", description: "Certified professionals dedicated to perfecting every espresso shot and beverage", icon: Users
|
||||
}
|
||||
]}
|
||||
imageSrc="https://img.b2bpic.net/free-photo/coffee-beans-glass-jar-black-background-closeup-selective-focus-vertical-frame-roasting-preparing-coffee-vertical-frame_166373-2289.jpg"
|
||||
imageAlt="Premium coffee beans"
|
||||
mediaAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get In Touch"
|
||||
tagIcon={MapPin}
|
||||
title="Visit Our Roastery Today"
|
||||
description="Stop by for an espresso, explore our selection, or book a private coffee tasting session. We'd love to welcome you to our community of coffee lovers."
|
||||
buttons={[
|
||||
{ text: "Find Us On Maps", href: "#" },
|
||||
{ text: "Book A Tasting", href: "#" }
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Brew Haven"
|
||||
copyrightText="© 2025 Brew Haven Coffee Roastery. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com", ariaLabel: "Instagram"
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com", ariaLabel: "Facebook"
|
||||
},
|
||||
{
|
||||
icon: Twitter,
|
||||
href: "https://twitter.com", ariaLabel: "Twitter"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -29,8 +29,7 @@ export default function BlogPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
@@ -81,4 +80,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1407,4 +1407,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
@@ -30,7 +30,7 @@ export default function CoffeeShopPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
@@ -217,4 +217,4 @@ export default function CoffeeShopPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -86,8 +86,10 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<NavbarStyleApple
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -131,8 +133,10 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<NavbarStyleApple
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -183,8 +187,10 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<NavbarStyleApple
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -240,4 +246,4 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,8 +39,10 @@ export default function ShopPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -83,8 +85,10 @@ export default function ShopPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="Brew Haven"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Process", id: "features" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -115,4 +119,4 @@ export default function ShopPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user