Update src/app/blog/page.tsx

This commit is contained in:
2026-02-23 12:23:41 +00:00
parent 15ee3d69e1
commit fc22eb32d0

View File

@@ -19,7 +19,7 @@ export default function BlogPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Shop", id: "/#shop" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Testimonials", id: "/#testimonials" },
@@ -44,7 +44,7 @@ export default function BlogPage() {
<NavbarLayoutFloatingOverlay
brandName="Find Me"
navItems={navItems}
button={{ text: "Explore Now", href: "/#shop" }}
button={{ text: "Explore Now", href: "/shop" }}
className="bg-card/80 backdrop-blur-md"
buttonClassName="bg-primary-cta text-primary-cta-text"
buttonTextClassName="font-semibold"
@@ -59,7 +59,7 @@ export default function BlogPage() {
<main className="pt-24">
<div id="blog" data-section="blog">
<BlogCardTwo
posts={posts}
blogPosts={posts}
title="From Our Blog"
description="Explore the latest stories, tips, and insights from our team."
animationType="slide-up"
@@ -78,9 +78,9 @@ export default function BlogPage() {
columns={[
{
title: "Shop", items: [
{ label: "New Arrivals", href: "/#shop" },
{ label: "Best Sellers", href: "/#shop" },
{ label: "Discovery Sets", href: "/#shop" },
{ label: "New Arrivals", href: "/shop" },
{ label: "Best Sellers", href: "/shop" },
{ label: "Discovery Sets", href: "/shop" },
],
},
{