// Maple Pavers — DESKTOP layout. Exposes MPD.App; the responsive shell mounts it.
(function () {
  const MPD = window.MPD;

  MPD.App = function MPDApp() {
    return (
      <div>
        <MPD.Header />
        <main>
          <MPD.Hero />
          <MPD.Quote />
          <MPD.Process />
          <MPD.Services />
          <MPD.Gallery />
          <MPD.Why />
          <MPD.Social />
          <MPD.Testimonials />
          <MPD.CTA />
        </main>
        <MPD.Footer />
      </div>
    );
  };
})();
