Skip to content

Commit

Permalink
feat: switch order in nav (#986)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonas Jaszkowic <[email protected]>
  • Loading branch information
aeschi and Jaszkowic authored Dec 17, 2024
1 parent 4243360 commit 827f43c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export const Navbar: React.FC = () => {

const navItems = [
{ label: i18n.navbar.map, path: "/map", icon: <MapIcon /> },
{ label: "Stats", path: "/stats", icon: <BarChartIcon /> },
{
label: i18n.navbar.profile.sidebarLabel,
path: "/profile",
icon: <UserIcon />,
},
{ label: i18n.navbar.info, path: "/about", icon: <InfoIcon /> },
{ label: "Stats", path: "/stats", icon: <BarChartIcon /> },
];

return (
Expand Down

0 comments on commit 827f43c

Please sign in to comment.