From 62ff7f5792062f03a949c4860f7d526c88d8f922 Mon Sep 17 00:00:00 2001 From: Mark <162816078+markashton480@users.noreply.github.com> Date: Mon, 2 Mar 2026 18:14:10 +0000 Subject: [PATCH] feat: add SVG favicon matching header logo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Create a static SVG favicon replicating the nav logo — a forward slash on a dark (#09090b) square with the brand light (#fafafa) text colour. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- static/favicon.svg | 4 ++++ templates/base.html | 1 + 2 files changed, 5 insertions(+) create mode 100644 static/favicon.svg diff --git a/static/favicon.svg b/static/favicon.svg new file mode 100644 index 0000000..d07bb1f --- /dev/null +++ b/static/favicon.svg @@ -0,0 +1,4 @@ + + + / + diff --git a/templates/base.html b/templates/base.html index ba56a6f..da2cf24 100644 --- a/templates/base.html +++ b/templates/base.html @@ -6,6 +6,7 @@ {% block title %}No Hype AI{% endblock %} {% block head_meta %}{% endblock %} + -- 2.49.1