From 4d1cab79e5e3d52c28da8470019c2c203ca3b195 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 11:09:02 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 5700485..cced839 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -8,7 +8,7 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Instagram, Facebook, Pinterest } from 'lucide-react'; +import { Instagram, Facebook, Pin } from 'lucide-react'; export default function BlogPage() { // Preserved logic for fetching posts @@ -33,13 +33,13 @@ export default function BlogPage() { brandName="Angelina" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Shop", id: "shop" }, - { name: "Testimonials", id: "testimonials" }, - { name: "FAQ", id: "faq" }, + { name: "About", id: "/#about" }, + { name: "Services", id: "/#services" }, + { name: "Shop", id: "/#shop" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, ]} - button={{ text: "Contact Us", href: "#contact" }} + button={{ text: "Contact Us", href: "/#contact" }} /> @@ -70,7 +70,7 @@ export default function BlogPage() { socialLinks={[ { icon: Instagram, href: "https://instagram.com/angelinaflowers", ariaLabel: "Instagram" }, { icon: Facebook, href: "https://facebook.com/angelinaflowers", ariaLabel: "Facebook" }, - { icon: Pinterest, href: "https://pinterest.com/angelinaflowers", ariaLabel: "Pinterest" }, + { icon: Pin, href: "https://pinterest.com/angelinaflowers", ariaLabel: "Pinterest" }, ]} />