Skip to content

Commit

Permalink
changed navbar icon to signpost
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebstep committed Mar 7, 2024
1 parent 05d4a77 commit 53e181d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import Avatar from "@mui/material/Avatar";
import Button from "@mui/material/Button";
import Tooltip from "@mui/material/Tooltip";
import MenuItem from "@mui/material/MenuItem";
import AdbIcon from "@mui/icons-material/Adb";
import Link from "next/link";
import SignpostIcon from "@mui/icons-material/Signpost";

const pages = ["SAGE", "GUARD", "ARTISAN", "About"];
const settings = ["Profile", "Account", "Dashboard", "Logout"];
Expand Down Expand Up @@ -42,7 +42,7 @@ function ResponsiveAppBar() {
<AppBar className="fixed">
<Container maxWidth="xl">
<Toolbar disableGutters>
<AdbIcon sx={{ display: { xs: "none", md: "flex" }, mr: 1 }} />
<SignpostIcon sx={{ display: { xs: "none", md: "flex" }, mr: 1 }} />
<Typography
variant="h6"
noWrap
Expand Down Expand Up @@ -98,7 +98,7 @@ function ResponsiveAppBar() {
))}
</Menu>
</Box>
<AdbIcon sx={{ display: { xs: "flex", md: "none" }, mr: 1 }} />
<SignpostIcon sx={{ display: { xs: "flex", md: "none" }, mr: 1 }} />
<Typography
variant="h5"
noWrap
Expand All @@ -114,7 +114,7 @@ function ResponsiveAppBar() {
color: "inherit",
textDecoration: "none",
}}>
LOGO
PATHFINDER
</Typography>
<Box sx={{ flexGrow: 1, display: { xs: "none", md: "flex" } }}>
{pages.map((page) => (
Expand Down

0 comments on commit 53e181d

Please sign in to comment.