diff --git a/concepts.html b/concepts.html
index d4e1807..13b8873 100644
--- a/concepts.html
+++ b/concepts.html
@@ -19,7 +19,7 @@
CHARLES WILLIAMS
Products
Concepts
Contact
- OSINT
+ OSINT
diff --git a/contact.html b/contact.html
index b30b503..15d119b 100644
--- a/contact.html
+++ b/contact.html
@@ -49,7 +49,7 @@ Get in Touch
-
+
OSINT
diff --git a/modal.js b/modal.js
index 994d6bd..8ad7ceb 100644
--- a/modal.js
+++ b/modal.js
@@ -56,6 +56,12 @@ const openModal = (e) => {
const btns = document.querySelectorAll('#sitrep-btn');
btns.forEach(btn => {
btn.addEventListener('click', openModal);
+ btn.addEventListener('keydown', (e) => {
+ if (e.key === ' ' || e.key === 'Spacebar') {
+ e.preventDefault(); // Prevent page scrolling
+ openModal(e);
+ }
+ });
});
// Close modal via button
diff --git a/products.html b/products.html
index f5f0835..01f1a6c 100644
--- a/products.html
+++ b/products.html
@@ -20,7 +20,7 @@ CHARLES WILLIAMS
Products
Concepts
Contact
- OSINT
+ OSINT