Files
e089f791-1262-421e-a604-c3d…/src/app/blog/page.tsx
2026-02-06 10:14:28 +00:00

90 lines
4.1 KiB
TypeScript

"use client";
import ReactLenis from "lenis/react";
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
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="elastic-effect"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="compact"
sizing="mediumLarge"
background="circleGradient"
cardStyle="soft-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<ReactLenis root>
<div className="min-h-screen bg-background">
<NavbarStyleApple
brandName="iPhone"
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "products" },
{ name: "Features", id: "features" },
{ name: "Tech Specs", id: "specs" },
{ name: "Reviews", id: "reviews" },
{ name: "Contact", id: "contact" }
]}
/>
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
<p className="text-foreground">Loading posts...</p>
</div>
) : (
<BlogCardThree
blogs={posts}
title="iPhone Blog"
description="Discover the latest iPhone tips, reviews, and technology insights from our experts"
tag="Blog"
textboxLayout="default"
useInvertedBackground="noInvert"
carouselMode="buttons"
animationType="slide-up"
/>
)}
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/attractive-woman-short-black-dress-chair-holding-phone-glass-cappuccino_197531-1115.jpg"
imageAlt="iPhone Store Footer"
logoText="iPhone Store"
copyrightText="© 2025 iPhone Store. All rights reserved."
columns={[
{
title: "Shop", items: [
{ label: "All Products", href: "#products" },
{ label: "iPhone 16 Pro", href: "#products" },
{ label: "Accessories", href: "#products" }
]
},
{
title: "Support", items: [
{ label: "Technical Support", href: "https://support.apple.com" },
{ label: "Warranty Info", href: "#" },
{ label: "Contact Us", href: "#contact" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}