Skip to content

Commit

Permalink
Updated links
Browse files Browse the repository at this point in the history
  • Loading branch information
geekymeeky committed Oct 4, 2021
1 parent f7388c2 commit fb628d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function App() {
</Route>
</Switch>
<Switch>
<Route exact path="/">
<Route exact path="/Synthax">
<Banner />
<About />
<Timeline />
Expand Down
4 changes: 2 additions & 2 deletions src/Components/Navbar/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ const Navbar = () => {
const getPath = (page) => {
switch (page) {
case "Home":
return "/";
return "/Synthax";

case "Projects":
return "/Projects";

default:
return `/#${page}`;
return `/Synthax/#${page}`;
}
};

Expand Down

0 comments on commit fb628d5

Please sign in to comment.