function App() {
  const { Header, Hero, Services, WhyUs, Gallery, Pricing, About, Testimonials, FAQ, Contact, Footer } = window;
  return (
    <React.Fragment>
      <Header />
      <Hero />
      <Services />
      <WhyUs />
      <Gallery />
      <About />
      <Pricing />
      <Testimonials />
      <FAQ />
      <Contact />
      <Footer />
    </React.Fragment>
  );
}
window.App = App;
