Update src/app/blog/page.tsx

This commit is contained in:
2026-02-23 12:13:24 +00:00
parent 4cfed80459
commit 6a198f0519

View File

@@ -25,22 +25,20 @@ export default function BlogPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Find Me"
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" },
]}
button={{ text: "Explore Now", href: "#shop" }}
className="bg-card/80 backdrop-blur-md"
buttonClassName="bg-primary-cta text-primary-cta-text"
buttonTextClassName="font-semibold"
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Find Me"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Blog", id: "/blog" },
]}
button={{ text: "Explore Now", href: "/#shop" }}
className="bg-card/80 backdrop-blur-md"
buttonClassName="bg-primary-cta text-primary-cta-text"
buttonTextClassName="font-semibold"
/>
</div>
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
@@ -60,26 +58,26 @@ export default function BlogPage() {
)}
<FooterMedia
imageSrc="https://img.b2bpic.net/free-vector/pink-silk-background_1048-401.jpg?_wi=2"
imageSrc="https://img.b2bpic.net/free-vector/pink-silk-background_1048-401.jpg"
imageAlt="Abstract luxury texture background with soft gradients"
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" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Promise", href: "#features" },
{ label: "Contact", href: "#contact" },
{ label: "About Us", href: "/#about" },
{ label: "Our Promise", href: "/#features" },
{ label: "Contact", href: "/#contact" },
],
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "FAQ", href: "/#faq" },
{ label: "Shipping", href: "#" },
{ label: "Returns", href: "#" },
],