diff --git a/client/src/components/layout/Sidebar/Sidebar.jsx b/client/src/components/layout/Sidebar/Sidebar.jsx index 1b97ee9..b2920d3 100644 --- a/client/src/components/layout/Sidebar/Sidebar.jsx +++ b/client/src/components/layout/Sidebar/Sidebar.jsx @@ -3,6 +3,7 @@ import { ColorModeButton } from "@/components/ui/color-mode"; import { Tooltip } from "@/components/ui/tooltip"; import { FaVolcano } from "react-icons/fa6"; import { RxHamburgerMenu } from "react-icons/rx"; +import { FaHome } from "react-icons/fa"; import { useState } from "react"; // ICONS @@ -64,7 +65,7 @@ export default function Sidebar({ onChangeView }) { // this list of btns will come from the db (not every usr will have access to admin) const buttons = [ - {icon: PushPin, name: "Dashboard", view: "widget"}, + {icon: FaHome, name: "Home", view: "widget"}, {icon: Globe, name: "Global Map", view: "global"}, {icon: MapMarker, name: "Regional Map", view: "regional"}, {icon: FaVolcano, name: "Volcano", view: "volcano"},