function HomePage({ onBook, hero, density }) {
  return (
    <React.Fragment>
      <Hero onBook={onBook} variant={hero}/>
      <SpecialtiesOverview density={density}/>
      <ConditionsIndex compact/>
      <DoctorsSection compact/>
      <EquipmentSection/>
      <LocationsSection onBook={onBook}/>
    </React.Fragment>
  );
}

window.HomePage = HomePage;
