[REPO REFACTOR]: changed to a better git repository structure with branches

This commit is contained in:
2025-11-01 05:49:49 +01:00
parent 4d0f44e995
commit 589215b2bc
76 changed files with 3529 additions and 0 deletions

19
src/App.jsx Normal file
View File

@@ -0,0 +1,19 @@
import NavBar from '@/components/NavBar.jsx';
import { Route, Routes, useLocation } from 'react-router-dom'
import Home from '@/pages/Home.jsx'
function App() {
return (
<>
<NavBar />
<div className="fill d-flex flex-column">
<Routes>
<Route path="/" element={<Home />} />
<Route path="/:paste_key" element={<Home />} />
</Routes>
</div>
</>
)
}
export default App