// Who We Serve — bold variant.
// Five distinct industries with unique icons (no more duplicate building glyphs),
// mono-tagged. Hover reveals a short problem/solution line.
const ServeIcon = ({ path }) => (
{path}
);
const SERVE = [
{
tag: 'TELEHEALTH',
name: 'Telehealth & Virtual Care',
detail: 'Launch compliant from day one. Video-encryption checks, BAA tracking, remote-access controls.',
tint: '#38bdf8',
icon: <>
>,
},
{
tag: 'BEHAVIORAL',
name: 'Behavioral Health',
detail: '42 CFR Part 2 overlay. Stricter consent flows, minimum-necessary mapping, breach-risk scoring.',
tint: '#a855f7',
icon: <>
>,
},
{
tag: 'DENTAL',
name: 'Dental & DSOs',
detail: 'Multi-location policy rollouts. Centralized training, per-practice risk registers, chain-level audits.',
tint: '#14b8a6',
icon: <>
>,
},
{
tag: 'BUSINESS_ASSOC',
name: 'Business Associates',
detail: 'Built for vendors serving covered entities. BAA lifecycle, subprocessor tracking, audit-response kits.',
tint: '#eab308',
icon: <>
>,
},
{
tag: 'RURAL',
name: 'Rural Hospitals & CAHs',
detail: 'Flat-rate pricing for small IT teams. Flex-Program-aligned docs, OCR audit protocol mapping.',
tint: '#f97316',
icon: <>
>,
},
];
const ServeCard = ({ item, i }) => {
const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" };
const [hover, setHover] = React.useState(false);
return (
setHover(true)}
onMouseLeave={() => setHover(false)}
style={{
position: 'relative',
background: hover ? `linear-gradient(180deg, ${item.tint}14, #0b1220)` : '#0b1220',
border: `1px solid ${hover ? item.tint + '66' : '#1e293b'}`,
borderRadius: 10, padding: '24px 22px',
minHeight: 220,
transition: 'all 0.3s ease',
cursor: 'pointer',
display: 'flex', flexDirection: 'column',
}}
>
{/* index label */}
0{i + 1} / 05
{item.tag}
{item.name}
{item.detail}
LEARN MORE →
);
};
const WhoWeServe = () => {
const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" };
const { SectionLabel, SectionH, SectionSub } = window;
return (
Purpose-built for the organizations other platforms ignore.
We focus on healthcare organizations that are serious about HIPAA but can't justify enterprise consulting. Our templates, workflows, and pricing assume you don't have a dedicated compliance team.
{SERVE.map((item, i) => )}
);
};
window.WhoWeServe = WhoWeServe;