In Main.jsx, you're not rendering your <App />:
Main.jsx
<App />
ReactDOM.createRoot(document.getElementById('root')).render( <React.StrictMode> <App /> </React.StrictMode> );