// Clan Of VTC — minimal app root: just the map-first homepage.

const App = () => {
  React.useEffect(() => {
    document.documentElement.dataset.theme = 'midnight';
  }, []);
  return <HomePage />;
};

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