Skip to content

Commit

Permalink
Merge pull request #117 from PEC-CSS/question/added-sidebar-item-explore
Browse files Browse the repository at this point in the history
  • Loading branch information
harshjohar authored Nov 5, 2023
2 parents 861189f + ba3f012 commit 622f443
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion components/dashboard/Sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styles from "../../styles/components/Sidebar.module.scss";
import { SocialLinks } from "../common/SocialLinks/SocialLinks";
import { FaHome } from "react-icons/fa";
import { MdAccountCircle, MdLogout } from "react-icons/md";
import { MdAccountCircle, MdLogout, MdExplore } from "react-icons/md";
import { BiCalendarEvent } from "react-icons/bi";
import { AiFillTrophy, AiOutlineMenu } from "react-icons/ai";
import { SidebarItem } from "./SidebarItem";
Expand Down Expand Up @@ -32,6 +32,11 @@ const sidebarItems = [
icon: <BiCalendarEvent />,
path: "/dashboard/events",
},
{
title: "Explore",
icon: <MdExplore />,
path: "/",
},
{
title: "Logout",
icon: <MdLogout />,
Expand Down

0 comments on commit 622f443

Please sign in to comment.