diff --git a/docs/index.md b/docs/index.md
index 0dad5287..f7d8a35a 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -3,4 +3,6 @@ hide:
- navigation
---
+
Home
+
--8<-- "README.md"
diff --git a/docs/javascripts/extra.js b/docs/javascripts/extra.js
index b86ec447..584b3c70 100644
--- a/docs/javascripts/extra.js
+++ b/docs/javascripts/extra.js
@@ -7,10 +7,3 @@ document.addEventListener("DOMContentLoaded", function() {
document.body.classList.add('document-is-notebook');
}
});
-
-// Hide "Home" h1
-document.querySelectorAll('h1').forEach(function(h1) {
- if (h1.textContent.trim() === "Home") {
- h1.style.display = 'none';
- }
-});