Update src/app/blog/page.tsx

This commit is contained in:
2026-02-24 15:20:46 +00:00
parent 1cc179d765
commit 5db0622605

View File

@@ -5,7 +5,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { useBlogPosts } from "@/hooks/useBlogPosts";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import FooterBase from "@/components/sections/footer/FooterBase";
import FooterCard from '@/components/sections/footer/FooterCard';
import { Facebook, Instagram, Twitter } from 'lucide-react';
export default function BlogPage() {
const { posts, isLoading } = useBlogPosts();
@@ -28,12 +29,12 @@ export default function BlogPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Hero", id: "hero-section" },
{ name: "About", id: "about-section" },
{ name: "Feature", id: "features-section" },
{ name: "Product", id: "products-section" },
{ name: "Testimonial", id: "testimonials-section" },
{ name: "Contact", id: "contact-section" },
{ name: "Hero", id: "/#hero-section" },
{ name: "About", id: "/#about-section" },
{ name: "Feature", id: "/#features-section" },
{ name: "Product", id: "/#products-section" },
{ name: "Testimonial", id: "/#testimonials-section" },
{ name: "Contact", id: "/#contact-section" },
]}
brandName="Klark"
bottomLeftText="Global Community"
@@ -61,7 +62,15 @@ export default function BlogPage() {
)}
<div id="footer" data-section="footer">
<FooterBase />
<FooterCard
logoText="Klark Floral Studio"
copyrightText="© 2025 | Klark Floral Studio"
socialLinks={[
{ icon: Instagram, href: "https://www.instagram.com/klarkfloralstudio", ariaLabel: "Follow us on Instagram" },
{ icon: Twitter, href: "https://twitter.com/klarkfloralstudio", ariaLabel: "Follow us on Twitter" },
{ icon: Facebook, href: "https://www.facebook.com/klarkfloralstudio", ariaLabel: "Like us on Facebook" },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>