diff --git a/src/app/page.tsx b/src/app/page.tsx index 58414e5..150a339 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,6 +15,22 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; import { Cat, Dog, Heart, HeartHandshake, Home, PawPrint, Rabbit, Users } from 'lucide-react'; export default function LandingPage() { + const commonNavItems = [ + { name: 'Home', id: '/' }, + { name: 'Adopt', id: '#adopt' }, + { name: 'About', id: '/about' }, + { name: 'Volunteer', id: '#team' }, + { name: 'Blog', id: '/blog' }, + { name: 'Shop', id: '/shop' }, + { name: 'Contact', id: '#contact' }, + ]; + + const commonFooterColumns = [ + { title: 'Quick Links', items: [{ label: 'Adopt', href: '#adopt' }, { label: 'Volunteer', href: '#team' }, { label: 'About Us', href: '/about' }, { label: 'FAQ', href: '#faq' }, { label: 'Blog', href: '/blog' }, { label: 'Shop', href: '/shop' }] }, + { title: 'Get Involved', items: [{ label: 'Donate', href: '#donate' }, { label: 'Foster', href: '#foster' }, { label: 'Events', href: '#events' }] }, + { title: 'Contact', items: [{ label: 'Email Us', href: 'mailto:info@pethaven.org' }, { label: 'Call Us', href: 'tel:+1234567890' }, { label: 'Location', href: '#location' }] }, + ]; + return (