From 15d1517ea751a5bf79f6ff4a0a6a47bf8d8addac Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:30:01 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 30a881d..fa4753b 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -7,8 +7,8 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; // Navbar Import import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -// Blog Section Import -import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; +// Section Import +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; // Footer Import import FooterMedia from '@/components/sections/footer/FooterMedia'; @@ -18,14 +18,23 @@ export default function BlogPage() { const navItems = [ { 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' }, - ]; + ]; + + const blogProducts = posts?.map((post: any) => ({ + id: post.id, + brand: post.author?.name || 'By Find Me', + name: post.title, + price: post.publishedAt ? new Date(post.publishedAt).toLocaleDateString('en-US', { month: 'long', day: 'numeric', year: 'numeric' }) : '', + rating: 5, + reviewCount: '', + imageSrc: post.coverImage?.url || '/placeholders/placeholder1.webp', + imageAlt: post.title, + })) || []; return (
-
-- 2.49.1 From 564426e4bb16935ca06817c7ec05fd79e69d050b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:30:02 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9484476..3bbadd7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,8 +17,6 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function LandingPage() { const navItems = [ { name: 'Home', id: '/' }, - { name: 'Shop', id: '/shop' }, - { name: 'Blog', id: '/blog' }, { name: 'About', id: '/#about' }, { name: 'Features', id: '/#features' }, { name: 'Testimonials', id: '/#testimonials' }, -- 2.49.1 From 5610a66d33b25d1613a8d4132823e0b2ce225546 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:30:03 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 92bc813..b8e90ad 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -17,8 +17,6 @@ interface ProductPageProps { const navItems = [ { name: 'Home', id: '/' }, - { name: 'Shop', id: '/shop' }, - { name: 'Blog', id: '/blog' }, { name: 'About', id: '/#about' }, { name: 'Features', id: '/#features' }, { name: 'Testimonials', id: '/#testimonials' }, -- 2.49.1 From de96663d832ad906d4abec7d32279a9bb95e387a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:30:04 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 57947f6..234ae9a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -9,8 +9,6 @@ import { useProductCatalog } from "@/hooks/useProductCatalog"; const navItems = [ { name: 'Home', id: '/' }, - { name: 'Shop', id: '/shop' }, - { name: 'Blog', id: '/blog' }, { name: 'About', id: '/#about' }, { name: 'Features', id: '/#features' }, { name: 'Testimonials', id: '/#testimonials' }, -- 2.49.1