export default function HealthCommunityLanding() {
return (
{/* HERO */}
Join Our Health Community —
get smarter, fitter, and feel better together.
Weekly science-backed tips, expert interviews, exclusive deals on wellness essentials, and fun 30‑day challenges. No spam. Just high‑value health.
Evidence‑based micro‑lessons you can read in 3 minutes. Members‑only discounts on supplements, sleep tech & fitness gear. Monthly live Q&A with coaches and practitioners.
{/* BENEFITS */}
Why join the community?
We turn complex health science into tiny, doable actions—and sweeten it with exclusive member deals.
{/* HOW IT WORKS */}
How it works
{/* FORM */}
Join our health community
Fill this out and you’re in. We’ll send a welcome kit and your first set of member perks.
Members‑only discounts (hand‑vetted) Weekly 3‑minute science breaks Access to monthly live Q&A
{/* IMPORTANT: Set your real processing endpoint below */}
{/* If your WordPress form plugin provides a specific action URL, replace the action attribute accordingly. */}
{/* TESTIMONIALS */}
Real people. Real progress.
{/* FAQ */}
Frequently asked questions
{/* FOOTER */}
);
}
/* ——— Reusable bits ——— */
function CheckIcon() {
return (
);
}
function ShieldIcon() {
return (
);
}
function SparkIcon() {
return (
);
}
function LightbulbIcon() {
return (
);
}
function TagIcon() {
return (
);
}
function CalendarIcon() {
return (
);
}
function ChatIcon() {
return (
);
}
function TrophyIcon() {
return (
);
}
function HeartIcon() {
return (
);
}
function BenefitCard({ icon, title, desc }) {
return (
{title}
{desc}
);
}
function StepCard({ number, title, desc }) {
return (
{title}
{desc}
);
}
function TestimonialCard({ name, role, quote }) {
return (
“{quote}”
);
}
function FaqItem({ q, a }) {
const id = q.toLowerCase().replace(/[^a-z0-9]+/g, “-“);
return (
{q}
);
}
function MockupCard() {
return (
);
}