diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 2802d53..c440048 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,6 +1,6 @@ "use client"; -import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; +import BlogCardThree from '@/components/sections/blog/BlogCardThree'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; @@ -8,7 +8,7 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin const posts = [ { id: '1', - category: ['Skincare', 'Tips'], + category: 'Skincare', title: '5 Tips for a Glowing Complexion', excerpt: 'Discover our top secrets to achieving radiant, healthy-looking skin that glows from within.', imageSrc: 'https://img.b2bpic.net/free-photo/minimal-assortment-beauty-products_23-2148961325.jpg', @@ -18,7 +18,7 @@ const posts = [ }, { id: '2', - category: ['Live Shows'], + category: 'Live Shows', title: 'What to Expect in Our Next Live Show', excerpt: 'Get a sneak peek into the exclusive bundles and new drops featured in our upcoming live event.', imageSrc: 'https://img.b2bpic.net/free-photo/online-workshop-demontration-beauty-products_259150-60056.jpg?_wi=2', @@ -28,7 +28,7 @@ const posts = [ }, { id: '3', - category: ['Cosmetics'], + category: 'Cosmetics', title: 'The Ultimate Guide to Pro Cosmetics', excerpt: 'Learn how to use our professional cosmetic kits to create stunning looks for any occasion.', imageSrc: 'https://img.b2bpic.net/free-photo/foundation-bottles-advertising-arrangement_23-2149511243.jpg?_wi=2', @@ -70,7 +70,7 @@ export default function BlogPage() {
- -