/* eslint-disable */
function Nav({ onContact }) {
const [scrolled, setScrolled] = React.useState(false);
React.useEffect(() => {
const onScroll = () => setScrolled(window.scrollY > 12);
window.addEventListener('scroll', onScroll, { passive: true });
return () => window.removeEventListener('scroll', onScroll);
}, []);
return (
);
}
function Hero() {
return (
Revenue cycle management · HIPAA compliant
Clean claims,
paid faster—
without the chase.
AlbertMed Billing is a full-service medical billing partner for independent practices, clinics and specialty groups. We submit, scrub and follow up on every claim so your team can focus on patients—not paperwork.
Live this quarter
98.6%
First-pass clean-claim rate across active clients.
22d
Average days in A/R—industry sits at 38–45.
+27%
Average lift in net collections in the first 90 days with a new AlbertMed engagement.
Certified & compliant
HIPAA · SOC 2 · AAPC
);
}
function TrustBar() {
// Faux clinic logos rendered as wordmarks — placeholder for real client logos.
const logos = [
{ name: 'Northbay Family Health', glyph: '◐' },
{ name: 'Cedar Pediatrics', glyph: '✚' },
{ name: 'Lakeshore Cardiology', glyph: '❖' },
{ name: 'Summit Orthopedics', glyph: '▲' },
{ name: 'Harbor Mental Health', glyph: '◇' },
];
return (
Trusted by 140+ practices across 32 states
{logos.map((l) => (
{l.glyph} {l.name}
))}
);
}
Object.assign(window, { Nav, Hero, TrustBar });