Files
b0ab8839-8e24-4655-a1db-1de…/src/app/blog/page.tsx
2026-02-09 16:35:37 +00:00

93 lines
4.2 KiB
TypeScript

"use client";
import ReactLenis from "lenis/react";
import BlogCardOne from "@/components/sections/blog/BlogCardOne";
import FooterMedia from "@/components/sections/footer/FooterMedia";
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="text-stagger"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="circleGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="FitFlow"
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "features" },
{ name: "Workouts", id: "workouts" },
{ name: "Reviews", id: "testimonials" },
{ name: "Download", 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">
<BlogCardOne
blogs={posts}
title="FitFlow Blog"
description="Discover fitness tips, workout guides, and wellness insights to help you achieve your health goals"
textboxLayout="default"
useInvertedBackground="noInvert"
animationType="slide-up"
carouselMode="buttons"
tag="Health & Fitness"
/>
</div>
)}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/closeup-female-athlete-using-mobile-phone-while-checking-heart-rate-wristwatch_637285-3472.jpg"
imageAlt="FitFlow Community"
columns={[
{
title: "Product", items: [
{ label: "Workout Plans", href: "workouts" },
{ label: "Features", href: "features" },
{ label: "Pricing", href: "#" }
]
},
{
title: "Community", items: [
{ label: "Reviews", href: "testimonials" },
{ label: "Success Stories", href: "#" },
{ label: "Blog", href: "#" }
]
},
{
title: "Support", items: [
{ label: "Contact Us", href: "contact" },
{ label: "FAQ", href: "#" },
{ label: "Help Center", href: "#" }
]
}
]}
logoText="FitFlow"
copyrightText="© 2025 FitFlow. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}