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 (