// Hero illustration slot — currently a photo from /assets.
// Swap the src or replace this whole component to change the image.

function HeroIllustration() {
  return (
    <img
      src="assets/hero-garage.png"
      alt="A garage being cleared out — line drawing of a man loading boxes into the back of a car"
      className="hero-illo"
      style={{ width: "100%", height: "100%", objectFit: "cover", display: "block" }}
    />
  );
}
window.HeroIllustration = HeroIllustration;
