diff --git a/config/settings.py b/config/settings.py
index 186fd4d..b112427 100644
--- a/config/settings.py
+++ b/config/settings.py
@@ -103,7 +103,7 @@ MEDIA_URL = "/media/"
STATIC_ROOT: Path = DATA_DIR / "staticfiles"
STATIC_ROOT.mkdir(exist_ok=True)
-STATIC_URL = "/static/"
+STATIC_URL = "static/"
STATICFILES_DIRS: list[Path] = [BASE_DIR / "static"]
TIME_ZONE = "UTC"
diff --git a/static/404.svg b/static/404.svg
deleted file mode 100644
index 1e7b98d..0000000
--- a/static/404.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
diff --git a/templates/base.html b/templates/base.html
index d3d4e88..574a7d0 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -23,43 +23,6 @@
{% endblock title %}
{% include "includes/meta_tags.html" %}
-
-
-
-
-
-
-
-
-
-
- {# Allow child templates to inject page-specific alternates into the head #}
- {% block extra_head %}
- {% endblock extra_head %}