Skip to content

Commit

Permalink
Merge pull request #39 from smswithoutborders/develop
Browse files Browse the repository at this point in the history
updates to the mobile navbar
  • Loading branch information
mildrette authored Jul 11, 2024
2 parents 31ffb43 + 9e4d1f3 commit a213075
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/Components/MobileNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,18 @@ function MobileNav({ darkMode, toggleDarkMode }) {
display: { xs: "block", md: "none" }
}}
>
<MenuItem onClick={handleCloseNavMenu}>
<Typography textAlign="center" component={Link} href="/reliability">
Reliability
</Typography>
<MenuItem onClick={handleCloseNavMenu} component={Link} to="/">
<Typography textAlign="center">Reliability</Typography>
</MenuItem>

<MenuItem onClick={handleCloseNavMenu} component={Link} href="/resilience">
<MenuItem onClick={handleCloseNavMenu} component={Link} to="/resilience">
<Typography textAlign="center">Resilience</Typography>
</MenuItem>

<MenuItem onClick={handleCloseNavMenu} component={Link} to="/OpenTelemetry">
<Typography textAlign="center">Open Telemetry</Typography>
</MenuItem>

<MenuItem onClick={handleCloseNavMenu} component={Link} href="/help">
<Typography textAlign="center">Help</Typography>
</MenuItem>
Expand Down

0 comments on commit a213075

Please sign in to comment.