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 10, 2024
1 parent 22eb84a commit dbf14af
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';

import Homepage from './pages/Homepage';
import Projectpage from './pages/Projectpage';
import Blogpage from './pages/Blogpage';
import Skillspage from './pages/Skillspage';
import Contactpage from './pages/Contactpage';
Expand All @@ -11,9 +12,11 @@ const App = () => {
<Router>
<Routes>
<Route path="/" element={<Homepage />} />
<Route path="/project" element={<Projectpage />} />
<Route path="/blog" element={<Blogpage />} />
<Route path="/skills" element={<Skillspage />} />
<Route path="/connect" element={<Contactpage />} />

</Routes>
</Router>
);
Expand Down

0 comments on commit dbf14af

Please sign in to comment.