import React, { useState } from "react"; import { NavLink } from "react-router-dom"; //this is the sidebar only for the About Page const AboutSidebar = () => { const [clicked, setClicked] = useState(false); const handleClick = () => { setClicked((prev) => !prev); }; return ( <>