John Boland 0c27cd93c4 Initial draft of Simple Heart site
Simple Next.js marketing site for placement.savethedogs.io — home, about,
privacy, terms. 501(c)(3) validation page for Twilio/ads/social.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-14 12:42:38 -05:00

70 lines
3.9 KiB
TypeScript

import type { Metadata } from "next";
export const metadata: Metadata = {
title: "About",
description:
"The Simple Heart Initiative is a 501(c)(3) nonprofit founded by Wayne Hsiung to build a mass movement for open rescue.",
};
export default function About() {
return (
<article className="max-w-3xl mx-auto px-6 py-16">
<h1 className="text-4xl md:text-5xl font-semibold tracking-tight text-[var(--color-primary-dark)]">
About The Simple Heart Initiative
</h1>
<p className="mt-6 text-lg text-[var(--color-text-secondary)] leading-relaxed">
The Simple Heart Initiative is a 501(c)(3) public charity building a mass movement
of compassion for animals. We believe that the emotions we share with other species
joy, fear, grief, love are the foundation of a more humane world.
</p>
<h2 className="mt-12 text-2xl font-semibold text-[var(--color-primary-dark)]">Our Mission</h2>
<p className="mt-3 text-[var(--color-text-secondary)] leading-relaxed">
To build a mass movement for open rescue the nonviolent, transparent tradition of bringing
suffering animals to safety and accepting the legal consequences. We support activists,
tell stories the industry tries to bury, and organize campaigns that let ordinary people
take part in extraordinary acts of courage.
</p>
<h2 className="mt-12 text-2xl font-semibold text-[var(--color-primary-dark)]">Our Founder</h2>
<p className="mt-3 text-[var(--color-text-secondary)] leading-relaxed">
The Simple Heart was founded by Wayne Hsiung, a former law professor and civil rights
attorney who has spent more than two decades organizing on behalf of animals. In October
2022, Wayne was acquitted by a Utah jury after rescuing two sick piglets from the largest
pig farm in the country a historic verdict that affirmed the legal and moral case for
open rescue. He writes the newsletter <em>The Simple Heart</em>, which is read by more
than 73,000 subscribers.
</p>
<h2 className="mt-12 text-2xl font-semibold text-[var(--color-primary-dark)]">Board of Directors</h2>
<ul className="mt-3 space-y-2 text-[var(--color-text-secondary)] leading-relaxed">
<li><strong className="text-[var(--color-text)]">Wayne Hsiung</strong> Founder & President</li>
<li><strong className="text-[var(--color-text)]">Dean</strong> Director</li>
<li><strong className="text-[var(--color-text)]">Priya</strong> Director</li>
</ul>
<h2 className="mt-12 text-2xl font-semibold text-[var(--color-primary-dark)]">Our Programs</h2>
<p className="mt-3 text-[var(--color-text-secondary)] leading-relaxed">
We run public-education campaigns, support legal defense for rescuers, and organize
direct-action mobilizations. Our flagship campaign,{" "}
<a href="https://savethedogs.io" className="text-[var(--color-accent)] underline">Save the Dogs</a>,
is working to rescue beagles from Ridglan Farms in Wisconsin a facility where a judge has
already found probable cause of felony animal cruelty.
</p>
<h2 className="mt-12 text-2xl font-semibold text-[var(--color-primary-dark)]">Legal & Contact</h2>
<p className="mt-3 text-[var(--color-text-secondary)] leading-relaxed">
The Simple Heart Initiative is a 501(c)(3) public charity, EIN{" "}
<strong className="text-[var(--color-text)]">88-2248389</strong>, registered in Santa Cruz,
California. Contributions are tax-deductible to the fullest extent permitted by law.
</p>
<p className="mt-3 text-[var(--color-text-secondary)] leading-relaxed">
For press, partnerships, or general inquiries:{" "}
<a href="mailto:info@simpleheart.org" className="text-[var(--color-accent)] underline">
info@simpleheart.org
</a>
</p>
</article>
);
}