Skip to content

Commit aa3ac18

Browse files
author
Mitesh Tandel
committed
link updated
1 parent 2f34e72 commit aa3ac18

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function App() {
4545
<div className="container my-3">
4646
<Routes>
4747
<Route path="/about" element={<About mode={mode} />} />
48-
<Route exact path="/" element={<Textform showAlert={showAlert} heading="Try TextUtils - word counter, character counter, remove extra spaces" mode={mode}/>} /> */}
48+
<Route exact path="/home" element={<Textform showAlert={showAlert} heading="Try TextUtils - word counter, character counter, remove extra spaces" mode={mode}/>} /> */}
4949
</Routes>
5050
</div>
5151
</Router>

src/components/Navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function Navbar(props) {
1313
<div className="collapse navbar-collapse" id="navbarSupportedContent">
1414
<ul className="navbar-nav me-auto mb-2 mb-lg-0">
1515
<li className="nav-item">
16-
<Link className="nav-link" aria-current="page" to="#">Home</Link>
16+
<Link className="nav-link" aria-current="page" to="/home">Home</Link>
1717
</li>
1818
<li className="nav-item">
1919
<Link className="nav-link" to="/about">{props.aboutText}</Link>

0 commit comments

Comments
 (0)