// Mount point — single homepage.
function App() {
  return <Homepage />;
}

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