diff --git a/docs/_templates/footer.html b/docs/_templates/footer.html
new file mode 100644
index 0000000..1f48114
--- /dev/null
+++ b/docs/_templates/footer.html
@@ -0,0 +1,5 @@
+{% extends "!footer.html" %}
+{% block extrafooter %}
+
Support this project by giving it a ⭐ on GitHub 
+ {{ super() }}
+{% endblock %}
diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html
new file mode 100644
index 0000000..9a07294
--- /dev/null
+++ b/docs/_templates/layout.html
@@ -0,0 +1,5 @@
+{% extends "!layout.html" %}
+{% block navigation %}
+ {{ super() }}
+
+{% endblock %}
diff --git a/docs/about.rst b/docs/about.rst
deleted file mode 100644
index ba75836..0000000
--- a/docs/about.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-About This Guide
-=====
-
-Formerly known as "go-profiler-notes", this project was initiated by `Felix Geisendörfer`_ upon joining the profiling team at Datadog in 2021. At the time, Go provided a significant number of profiling features, but there was a lack of resources on how to effectively utilize and interpret the generated data. The project initially began as a collection of markdown notes, but it eventually evolved into a comprehensive resource for Go profiling and beyond.
-
-
-
-.. _Felix Geisendörfer: https://felixge.de/
diff --git a/docs/conf.py b/docs/conf.py
index 24e5ff5..9117f20 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -20,7 +20,7 @@ extensions = ['sphinx_rtd_theme', 'sphinxemoji.sphinxemoji']
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
-
+numfig = True
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
@@ -41,6 +41,8 @@ html_theme_options = {
}
html_static_path = ['_static']
html_css_files = ['css/custom.css']
+html_show_sphinx = False
+html_show_copyright = False
# Workaround for html_css_files not getting updated on incremental builds.
# https://github.com/sphinx-doc/sphinx/issues/2090#issuecomment-572902572