aboutsummaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-07-14 18:05:49 +0200
committerschererleander <leander@schererleander.de>2025-07-14 18:05:49 +0200
commit6746aa770c34e9efc4d0794518ff46cf4942dba6 (patch)
tree1649d08dde6873adaaffb512416370b08f3668ad /src/App.tsx
parentf5187f366774a7d53b5a06fa9af83d1a6b686013 (diff)
chore: remove gear and project page
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/App.tsx b/src/App.tsx
index ca7bcb4..0d4b55e 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,8 +1,6 @@
import { Routes, Route } from 'react-router-dom';
import Navbar from './components/Navbar';
-import Gear from './pages/Gear';
import Home from './pages/Home';
-import Projects from './pages/Projects';
import Footer from './components/Footer';
import NotFound from './pages/404';
import Blog from './pages/Blog';
@@ -11,13 +9,11 @@ import Post from './pages/Post';
function App() {
return (
- <>
+ <>
<Navbar />
- <section className="max-w-xl mx-auto py-5 px-4">
+ <section className="max-w-4xl mx-auto py-5 px-4">
<Routes>
<Route path="/" element={<Home />} />
- <Route path="/gear" element={<Gear />} />
- <Route path='/projects' element={<Projects />} />
<Route path='/blog' element={<Blog />} />
<Route path='/blog/:slug' element={<Post />} />
<Route path='*' element={<NotFound />} />