function ProfileHeader({ title = "Profile" }) {
  return (
    <header
      className="sticky top-0 z-10 h-14 flex items-center px-5 border-b border-line backdrop-blur-md"
      style={{ background: "rgba(10,10,11,0.85)" }}
    >
      <div className="text-[15px] font-semibold text-fg tracking-[-0.01em]">{title}</div>
    </header>
  );
}

window.ProfileHeader = ProfileHeader;
