"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import ProductCardFour from "@/components/sections/product/ProductCardFour"; import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterBase from "@/components/sections/footer/FooterBase"; import { Lightbulb, BarChart3, Heart, Users, Building2, TrendingUp, BookOpen } from "lucide-react"; import Link from "next/link"; export default function ProgramsPage() { const navItems = [ { name: "About", id: "about" }, { name: "Programs", id: "programs" }, { name: "Impact", id: "metrics" }, { name: "Get Involved", id: "contact" }, { name: "Contact", id: "footer" }, ]; const footerColumns = [ { title: "Quick Links", items: [ { label: "About Us", href: "/about" }, { label: "Our Programs", href: "/programs" }, { label: "Impact Stories", href: "/impact" }, { label: "Get Involved", href: "/get-involved" }, ], }, { title: "How to Help", items: [ { label: "Donate Now", href: "#" }, { label: "Become a Volunteer", href: "#" }, { label: "Corporate Partnership", href: "#" }, { label: "Institutional Collaboration", href: "#" }, ], }, { title: "Resources", items: [ { label: "Blog & Insights", href: "#" }, { label: "Annual Report", href: "#" }, { label: "Impact Dashboard", href: "#" }, { label: "Contact Us", href: "/contact" }, ], }, ]; return (
); }