diff --git a/components/Side_bar.tsx b/components/Side_bar.tsx
index 7097d18..cae68a7 100644
--- a/components/Side_bar.tsx
+++ b/components/Side_bar.tsx
@@ -2,6 +2,7 @@
import Image from "next/image";
import { usePathname } from "next/navigation";
+import { useState } from "react";
// Navigation links configuration
const links = [
@@ -23,36 +24,46 @@ const links = [
*/
export default function Sidebar() {
const pathname = usePathname();
+ const [isMenuOpen, setIsMenuOpen] = useState(false);
return (
-
-
+
+
{/* Menu Icon */}
-
-
- {/* Navigation Links */}
-
+
+
setIsMenuOpen(!isMenuOpen)}
+ >
+
+
+
+ {/* Navigation Links */}
{links.map((link) => (
-
+
{/* Link Icon Container */}
-
+
{/* Link Label */}
-
{link.label}
+
+ {link.label}
+
))}