// Homepage — landing overview. Nav links go to dedicated pages.
function App() {
  return (
    <React.Fragment>
      <window.Header current={null} />
      <window.Hero />
      <window.Services />
      <window.Works />
      <window.Company />
      <window.CTABand />
      <window.Footer />
    </React.Fragment>
  );
}

ReactDOM.createRoot(document.getElementById("root")).render(<App />);
