Update src/app/blog/page.tsx

This commit is contained in:
2026-02-21 13:05:57 +00:00
parent e89d6a64f8
commit 71fae23ee5

View File

@@ -9,31 +9,28 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
const navItems = [ const navItems = [
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "About Us", id: "about-us" }, { name: "Blog", id: "/blog" },
{ name: "Process", id: "adoption-process" }, { name: "Shop", id: "/shop" },
{ name: "Pets", id: "available-pets" }, { name: "Contact", id: "/#contact-us" },
{ name: "Success", id: "success-stories" },
{ name: "FAQs", id: "faq" },
{ name: "Contact", id: "contact-us" },
]; ];
const footerColumns = [ const footerColumns = [
{ {
title: "Adoption", items: [ title: "Adoption", items: [
{ label: "Available Pets", href: "#available-pets" }, { label: "Available Pets", href: "/#available-pets" },
{ label: "Adoption Process", href: "#adoption-process" }, { label: "Adoption Process", href: "/#adoption-process" },
], ],
}, },
{ {
title: "Get Involved", items: [ title: "Get Involved", items: [
{ label: "Volunteer", href: "#contact-us" }, { label: "Volunteer", href: "/#contact-us" },
{ label: "Donate", href: "https://example.com/donate" }, { label: "Donate", href: "https://example.com/donate" },
], ],
}, },
{ {
title: "About Us", items: [ title: "About Us", items: [
{ label: "Our Mission", href: "#about-us" }, { label: "Our Mission", href: "/#about-us" },
{ label: "Contact Us", href: "#contact-us" }, { label: "Contact Us", href: "/#contact-us" },
], ],
}, },
]; ];