diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..21a0ade --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,83 @@ +"use client"; + +import React from 'react'; +import ReactLenis from "lenis/react"; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function AboutPage() { + 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 ( + + + + +
+
+ +
+
+ + +
+
+ ); +} diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 8ac9a41..c92cb08 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -16,6 +16,22 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + 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 (