<buttonclass="btn btn-square-solid bg-indigo-400"onclick="openNav()">
open sidenav
</button>
/* Set the width of the side navigation to 250px */const openNav = () => {
document.getElementById("side-navbar").style.width = "250px";
};
/* Set the width of the side navigation to 0 */const closeNav = () => {
document.getElementById("side-navbar").style.width = "0";
};