/ src / App.tsx
App.tsx
 1  import { Routes, Route } from 'react-router-dom'
 2  import Layout from './components/Layout'
 3  import HomePage from './pages/Home'
 4  import DownloadPage from './pages/Download'
 5  import EcosystemPage from './pages/Ecosystem'
 6  
 7  function App() {
 8    return (
 9      <Routes>
10        <Route path="/" element={<Layout />}>
11          <Route index element={<HomePage />} />
12          <Route path="download" element={<DownloadPage />} />
13          <Route path="ecosystem" element={<EcosystemPage />} />
14        </Route>
15      </Routes>
16    )
17  }
18  
19  export default App