diff --git a/src/userComponents/Sidebar.tsx b/src/userComponents/Sidebar.tsx
index b6f9b65..21d543d 100644
--- a/src/userComponents/Sidebar.tsx
+++ b/src/userComponents/Sidebar.tsx
@@ -8,6 +8,7 @@ import {
Image,
Flex,
HStack,
+ Circle,
} from "@chakra-ui/react";
import { Link as RouterLink } from "react-router-dom";
import { MdDashboard } from "react-icons/md";
@@ -69,8 +70,10 @@ const Sidebar = () => {
color={activeSection === item.value ? "#FFFFFF" : "#000000"}
size="20px"
/> */}
+
+ {item.icon}
+
- {item.icon}
{item.title}
@@ -87,7 +90,7 @@ const Sidebar = () => {
{item.links && activeSection === item.value && (
-
+
{item.links.map((link) => (
{activeSection === item.value && (
@@ -95,7 +98,7 @@ const Sidebar = () => {
height="10px"
width="10px"
borderRadius="50%"
- bg="#02A0A0"
+ bg="#02A0A0"
/>
)}