Files
383bae1c-229c-4fa4-8708-ffc…/src/app/blog/page.tsx
2026-02-17 14:51:05 +00:00

99 lines
4.2 KiB
TypeScript

"use client";
import ReactLenis from "lenis/react";
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { useBlogPosts } from "@/hooks/useBlogPosts";
export default function BlogPage() {
const { posts, isLoading } = useBlogPosts();
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumSizeLargeTitles"
background="grid"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Barakuda"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Menu", id: "features" },
{ name: "Stories", id: "testimonial" },
{ name: "Community", id: "metric" }
]}
button={{ text: "Visit Us", href: "#contact" }}
/>
</div>
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
<p className="text-foreground">Loading posts...</p>
</div>
) : (
<div id="blog" data-section="blog">
<BlogCardTwo
blogs={posts}
title="Coffee Stories & Insights"
description="Discover the art of coffee making, bean origins, and community stories from Barakuda Coffee"
tag="Blog"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
carouselMode="buttons"
/>
</div>
)}
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Barakuda"
columns={[
{
items: [
{ label: "About Us", href: "#about" },
{ label: "Our Coffee", href: "#features" },
{ label: "Community", href: "#metric" }
]
},
{
items: [
{ label: "Stories", href: "#testimonial" },
{ label: "Contact", href: "#contact" },
{ label: "Visit Us", href: "#contact" }
]
},
{
items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Twitter", href: "https://twitter.com" }
]
},
{
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" }
]
}
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}