Sample Page

import React, { useState } from "react"; import { HeartHandshake, Shield, Flag, Star, HandHeart, HandCoins, Landmark, Gift, Sparkles, Quote } from "lucide-react"; // Brand palette const colors = { navy: "#1B365D", gold: "#D4AF37", charcoal: "#36454F", cream: "#F7F7F2", red: "#8B0000", black: "#0B0B0B", }; export default function DonationPage() { const [amount, setAmount] = useState(50); const [freq, setFreq] = useState("one-time"); const quick = [25, 50, 100, 250, 500]; return (
{/* Header / Hero */}
{/* Logo slot */}
Place HPI logo here

Heritage Phenomenon, Inc.

Our Service, Our Story: Elevating Black Veterans' Truths
in America's Military Legacy

Your gift powers advocacy, research, and community care that center the lived experiences of Black veterans— and ensures their service is honored without erasure.

{/* Donate callout */}
{quick.map((q) => ( ))}
setAmount(Number(e.target.value))} className="w-28 rounded-lg bg-black/50 border border-white/20 px-3 py-2 focus:outline-none focus:ring-2 focus:ring-white/30" />
{(["one-time", "monthly", "annual"] as const).map((f) => ( ))} Donate ${amount} {freq !== "one-time" ? `(${freq})` : ""}

Secure processing via your preferred platform. Recurring gifts sustain year‑round programming.

{/* Mission */}

Mission

Heritage Phenomenon, Inc. advances equity and justice by advocating for policies that dismantle systemic barriers affecting Black American veterans, fostering community engagement to amplify their narratives, and conducting interdisciplinary research to illuminate the intersections of race, patriotism, veteran identity, and moral injury. Through legislative advocacy, public scholarship, and strategic partnerships, we strive to redefine societal narratives to honor the service of Black veterans while challenging the structures that perpetuate their erasure.

{/* What your gift powers */}

What your gift powers

{/* Tier cards */}
$50

Print materials for outreach and on‑site resources at community events.

$100

Covers a veteran's participation in S.A.V.E. suicide‑prevention training.

$250

Supports Vet Center mobile counseling days and on‑site claims assistance.

$500

Funds a safety‑planning workshop partnering congregations with clinicians.

$1,000

Underwrites a full day of Heritage of Heroes programming in a host church.

Custom

Design a gift or sponsorship aligned to your values and capacity.

{/* Programs / Events */}

Signature programs your donation sustains

{/* Credibility & Ways to Give */}

Ways to Give

  • Online: Use the Donate button above (Stripe/Givebutter/PayPal supported). Replace the placeholder link with your processor URL.
  • By check: Make payable to Heritage Phenomenon, Inc. (add mailing address here).
  • Corporate & Foundations: Email sponsorship inquiries to blgphdllc@gmail.com.
  • In‑kind: Socks, hats, venue space, printing, AV support, and refreshments meaningfully stretch our budget.

Heritage Phenomenon, Inc. is a nonprofit organization. Donations may be tax‑deductible to the extent allowed by law. Please consult your tax advisor.

Why this work matters

We advance a truthful narrative of American service by centering Black veterans’ lived experience and scholarship. Your support fuels policy change, research that names structural harms, and practical care—so veterans and families are seen, heard, and equipped.

“Our Service, Our Story is more than a tagline—it’s a promise to remember with accuracy and to act with courage.”

{/* Footer CTA */}

Ready to stand with Black veterans?

Join as a monthly partner and help sustain year‑round advocacy, research, and community care.

Questions? Email us. © {new Date().getFullYear()} Heritage Phenomenon, Inc. — Our Service, Our Story.

); } function ProgramCard({ title, blurb }: { title: string; blurb: string }) { return (

{title}

{blurb}

); }
Scroll to Top