diff --git a/backend/app.py b/backend/app.py
index 724b910..64ddb5b 100644
--- a/backend/app.py
+++ b/backend/app.py
@@ -589,6 +589,12 @@ async def reload_data(
# =============================================================================
+@app.get("/favicon.svg")
+async def favicon():
+ """Serve favicon."""
+ return FileResponse(settings.frontend_dir / "favicon.svg", media_type="image/svg+xml")
+
+
@app.get("/robots.txt")
async def robots_txt():
"""Serve robots.txt for search engine crawlers."""
diff --git a/frontend/favicon.svg b/frontend/favicon.svg
new file mode 100644
index 0000000..7b533fc
--- /dev/null
+++ b/frontend/favicon.svg
@@ -0,0 +1,6 @@
+
diff --git a/frontend/index.html b/frontend/index.html
index 154510a..c26ec65 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -11,6 +11,9 @@
+
+
+