this is my second using stackflow, so sorry if something is hard to understand, I'm creating a React project, and when I put the Route, only the first page is rendered, and no more, my site is practically One Page , only one page is not the About Page.
App.js
const App = () => {
return (
<>
<Routes>
<Route index path="/" element={<Home />} />
<Route exact path="/Cardapio" element={<Cardapio />} />
<Route exact path="/Knowmore" element={<Knowmore />} />
<Route exact path="/About" element={<About />} />
<Route path="*" element={<p>Página não encontrada</p>} />
</Routes>
</>
);
};
export default App;