Find out more about who we are, what we do and how you can support us to help make a difference.
import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { SiteHeader } from "@/components/SiteHeader"; import { SiteFooter } from "@/components/SiteFooter"; import { usePageMeta } from "@/lib/seo"; const navigationItems = [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "News", href: "/news" }, { label: "Support Us", href: "/support" }, { label: "Contact", href: "/contact" }, ]; const cardData = [ { title: "About Us", imageUrl: "/about-640.webp", imageSrcSet: "/about-640.webp 640w, /about-960.webp 960w", href: "/about", }, { title: "Support Us", imageUrl: "/support-640.webp", imageSrcSet: "/support-640.webp 640w, /support-960.webp 960w", href: "/support", }, { title: "Contact", imageUrl: "/contact-640.webp", imageSrcSet: "/contact-640.webp 640w, /contact-960.webp 960w", href: "/contact", }, ]; export const Desktop = (): JSX.Element => { usePageMeta({ title: "Home", path: "/" }); return (
Find out more about who we are, what we do and how you can support us to help make a difference.