import React from 'react' type Props = { compact?: boolean } export function Header({ compact = false }: Props) { const heightClass = compact ? 'h-16 md:h-20 lg:h-20' : 'h-24 md:h-28 lg:h-32' return (
{/* Background image */} Header background {/* Content */}
{/* Logo */} Manalife logo {/* Title */}

Pathora{' '} | Manalife's Colposcopy Assistant

) }