🚀 feat(_route): add dev to origin

This commit is contained in:
eshanized
2024-12-23 02:19:28 +05:30
parent 0bca0ca1d7
commit 937b1a56ab
16382 changed files with 2985935 additions and 1967 deletions

26
src/App.tsx Normal file
View File

@@ -0,0 +1,26 @@
import React from 'react';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import { Layout } from './components/layout/Layout';
import { Home } from './pages/Home';
import { About } from './pages/About';
import { DownloadPage } from './pages/Download';
import { Donors } from './pages/Donors';
import { Maintainers } from './pages/Maintainers';
function App() {
return (
<Router>
<Layout>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/download" element={<DownloadPage />} />
<Route path="/donors" element={<Donors />} />
<Route path="/maintainers" element={<Maintainers />} />
</Routes>
</Layout>
</Router>
);
}
export default App;