First commit
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
||||
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'
|
||||
import { Layout } from './components/Layout'
|
||||
import { Home } from './pages/Home'
|
||||
import { About } from './pages/About'
|
||||
import { Blog } from './pages/Blog'
|
||||
import { BlogPost } from './pages/BlogPost'
|
||||
import { Projects } from './pages/Projects'
|
||||
import { Contact } from './pages/Contact'
|
||||
import { NotFound } from './pages/NotFound'
|
||||
import './components/styles.css'
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<Router>
|
||||
<Routes>
|
||||
<Route path="/" element={<Layout />}>
|
||||
<Route index element={<Home />} />
|
||||
<Route path="/about" element={<About />} />
|
||||
<Route path="/blog" element={<Blog />} />
|
||||
<Route path="/blog/:slug" element={<BlogPost />} />
|
||||
<Route path="/projects" element={<Projects />} />
|
||||
<Route path="/contact" element={<Contact />} />
|
||||
<Route path="*" element={<NotFound />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
</Router>
|
||||
)
|
||||
}
|
||||
|
||||
export default App
|
||||
Reference in New Issue
Block a user