mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-12 15:45:02 +02:00
🛠 refactor(wipe): all the repo code
This commit is contained in:
25
src/App.tsx
25
src/App.tsx
@@ -1,25 +0,0 @@
|
||||
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 basename="/">
|
||||
<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;
|
Reference in New Issue
Block a user