diff options
Diffstat (limited to 'src/App.tsx')
| -rw-r--r-- | src/App.tsx | 8 |
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 />} /> |
