diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 6cb05ef..30a881d 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,7 +1,6 @@ "use client"; import React from 'react'; -import Link from 'next/link'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { useBlogPosts } from "@/hooks/useBlogPosts"; @@ -18,14 +17,15 @@ 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" }, - ]; + { name: 'Home', id: '/' }, + { name: 'Shop', id: '/shop' }, + { name: 'Blog', id: '/blog' }, + { name: 'About', id: '/#about' }, + { name: 'Features', id: '/#features' }, + { name: 'Testimonials', id: '/#testimonials' }, + { name: 'FAQ', id: '/#faq' }, + { name: 'Contact', id: '/#contact' }, + ]; return (