// Postgres landing page root app
function PGApp() {
  return (
    <React.Fragment>
      <Nav />
      <PGHero />
      <PGRelease />
      <PGSections />
      <PGContactCTA />
      <Footer />
    </React.Fragment>
  );
}

const pgRoot = ReactDOM.createRoot(document.getElementById("root"));
pgRoot.render(<PGApp />);
