Files
0ced91a9-f67e-47b3-a353-51a…/src/app/blog/page.tsx
Nikolay Pecheniev 3412c86863 Initial commit
2026-02-09 19:38:58 +02:00

94 lines
4.2 KiB
TypeScript

"use client";
import ReactLenis from "lenis/react";
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { useBlogPosts } from "@/hooks/useBlogPosts";
export default function BlogPage() {
const { posts, isLoading } = useBlogPosts();
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="largeSmall"
background="aurora"
cardStyle="inset"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Bee"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Gallery", id: "gallery" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "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">
<BlogCardThree
blogs={posts}
title="Floral Inspiration"
description="Discover the art of floral design through our latest insights and creative journeys"
tag="Blog"
textboxLayout="default"
useInvertedBackground="noInvert"
animationType="slide-up"
carouselMode="buttons"
/>
</div>
)}
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Explore", items: [
{ label: "Gallery", href: "gallery" },
{ label: "Services", href: "services" },
{ label: "About", href: "about" },
{ label: "Testimonials", href: "testimonials" }
]
},
{
title: "Connect", items: [
{ label: "Contact Us", href: "contact" },
{ label: "Email", href: "mailto:hello@beeflowers.com" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Newsletter", href: "contact" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "#" },
{ label: "Delivery Info", href: "#" },
{ label: "Care Guide", href: "#" },
{ label: "Policies", href: "#" }
]
}
]}
copyrightText="© 2025 Bee Flowers Studio. All rights reserved. Crafted with love and petals."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}