From a5ccfd11b82d6e0adaf35751b3c8085f5e314c9f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 15:18:19 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 50 +++++++++++++++++-------------------------- 1 file changed, 20 insertions(+), 30 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 02baed0..7cf18a1 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -10,6 +10,23 @@ import BlogCardThree from '@/components/sections/blog/BlogCardThree'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Products", id: "/#products" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" }, + ]; + + const footerColumns = [ + { title: "Shop", items: [{ label: "Bouquets", href: "/#products" }, { label: "Seasonal", href: "/#products" }, { label: "Our Shop", href: "/shop" }] }, + { title: "Studio", items: [{ label: "About Us", href: "/#about" }, { label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }, + { title: "Resources", items: [{ label: "Blog", href: "/blog" }] }, + { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }, + ]; + return (