diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 59f8d9b..da9b28e 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -15,6 +15,7 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const navItems = [{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }]; return ( - {/* NAVBAR: Using NavbarStyleApple as required */} - + - {/* POSTS LOGIC: Preserved exactly as is */} {isLoading ? (

Loading posts...

) : ( - /* BLOG SECTION: Using BlogCardOne with generated props, except for 'posts' */ - +
+ +
)} - {/* FOOTER: Using FooterLogoReveal as required */} - +
);