React state and simplified logic.
I updated the navbar.
"use client";
import React from "react";
import { AiOutlineMenu, AiOutlineClose } from "react-icons/ai";
interface NavBarProps {
isSidebarOpen: boolean; // Track sidebar state
toggleSidebar: () => void; // Function to to...
nyakundi.hashnode.dev7 min read