/* =========================================================== Halvorsen Orthopaedic — Nav + Hero =========================================================== */ const Logo = ({ mono = false }) => (
Dr. Mira Halvorsen {!mono && ( MD · FRCS(Orth) · Est. 2009 )}
); const Nav = ({ onBook, onToggleTheme, theme }) => { const [scrolled, setScrolled] = React.useState(false); React.useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 12); onScroll(); window.addEventListener("scroll", onScroll, { passive: true }); return () => window.removeEventListener("scroll", onScroll); }, []); const items = [ ["About", "about"], ["Procedures", "procedures"], ["Outcomes", "outcomes"], ["Journey", "journey"], ["Press", "press"], ["Locations", "locations"], ]; return (
); }; /* =========================================================== HERO — editorial with portrait plate + sticky parallax label =========================================================== */ const Hero = ({ onBook }) => { return (
{/* Top meta bar */}
ESTAB. 2009 · OSLO · LONDON
{/* Name overline — bold introduction */}
Dr. Mira Halvorsen Consultant Orthopaedic Surgeon
{/* LEFT: massive editorial title */}

The careful repair of moving parts.

Dr. Halvorsen is a consultant orthopaedic surgeon specialising in joint preservation, sports injury and complex revision. She believes the best surgery is the one a patient never needs — and when they do, that it returns them to the life they had.
{/* Signature */}
Read philosophy
{/* RIGHT: portrait plate with metadata */}
{/* Oxblood seal — emotional accent */}
{/* Bottom marquee of credentials */}
{/* floating crosshair in negative space */}
); }; const Stat = ({ k, v, sub }) => (
{k}
{v}
{sub}
); const Cred = ({ label, v }) => (
{label}
{v}
); Object.assign(window, { Logo, Nav, Hero });