From 596151bf65c79967091caf524c72aec991aecff9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:20:55 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 70 +++++++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 32 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 138dbb9..d61d4c8 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,6 +1,7 @@ -use client"; +"use client"; -import ReactLenis from "lenis/react"; +import React from 'react'; +import Link from 'next/link'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { useBlogPosts } from "@/hooks/useBlogPosts"; @@ -16,6 +17,16 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const navItems = [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/#shop" }, + { name: "About", id: "/#about" }, + { name: "Features", id: "/#features" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, + ]; + return ( - + - {isLoading ? ( -
-

Loading posts...

-
- ) : ( -
+ {isLoading ? ( +
+

Loading posts...

+
+ ) : ( +
+
-
- )} - + +
+ )} + +
); }