Skip to content

Commit

Permalink
Update App.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ASquare04 authored Jul 6, 2024
1 parent f45e7c4 commit b322821
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';

import Homepage from './pages/Homepage';
import Blogpage from './pages/Blogpage';
import Skillspage from './pages/Skillspage';
import Contactpage from './pages/Contactpage';

const App = () => {
Expand All @@ -11,6 +12,7 @@ const App = () => {
<Routes>
<Route path="/" element={<Homepage />} />
<Route path="/blog" element={<Blogpage />} />
<Route path="/skills" element={<Skillspage />} />
<Route path="/connect" element={<Contactpage />} />
</Routes>
</Router>
Expand Down

0 comments on commit b322821

Please sign in to comment.