Skip to content

Commit

Permalink
feat: ✅Updated NavLinks
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwinexe committed Dec 12, 2021
1 parent 867819c commit 7e9b882
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<li><a href="#">Home</a></li>
<li><a href="roadmap/index.html">Roadmap</a></li>
<li><a href="stream-cncfchat/index.html">Chatroom</a></li>
<li><a href="#">CNCF Projects</a></li>
<li><a href="https://www.cncf.io/projects/">CNCF Projects</a></li>
</ul>
</nav>
<div class="text-content">
Expand Down
2 changes: 1 addition & 1 deletion client/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function App() {
return (
<>
<Router>
<Navbar />
{/* <Navbar /> */}
<Routes>
<Route path="/" element={<Home />} />
<Route exact path="/roadmap" render={() => {window.location.href="roadmap/index.html"}} />
Expand Down
1 change: 0 additions & 1 deletion client/src/components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import React from 'react';
function Home () {
return (
<div>
<p>Hello World</p>
</div>

);
Expand Down

0 comments on commit 7e9b882

Please sign in to comment.