Update src/app/blog/page.tsx
This commit is contained in:
@@ -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" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user