diff --git a/dist/about/index.html b/dist/about/index.html
index a90516ae..22fdfa72 100644
--- a/dist/about/index.html
+++ b/dist/about/index.html
@@ -1,23 +1,25 @@
plurality.net
\ No newline at end of file
+ mobileNavLeft.addEventListener('click', function () {
+ if (mobileNavOpen == false) {
+ mobileNavOverlayWrapper.style.display = 'flex';
+ mobileNavLeft.innerHTML = 'Close (-)';
+ mobileNavRight.innerHTML = '';
+ mobileNavOpen = true;
+ } else {
+ mobileNavOverlayWrapper.style.display = 'none';
+ mobileNavLeft.innerHTML = 'Menu (+)';
+ mobileNavRight.innerHTML = mobileNavRightContent;
+ mobileNavOpen = false;
+ }
+ });
+ }