diff --git a/src/conductor/web/frontend/index.html b/src/conductor/web/frontend/index.html
index 5e33234..b68eadf 100644
--- a/src/conductor/web/frontend/index.html
+++ b/src/conductor/web/frontend/index.html
@@ -2,6 +2,7 @@
+
Conductor Dashboard
diff --git a/src/conductor/web/frontend/public/favicon.svg b/src/conductor/web/frontend/public/favicon.svg
new file mode 100644
index 0000000..ae3190d
--- /dev/null
+++ b/src/conductor/web/frontend/public/favicon.svg
@@ -0,0 +1,16 @@
+
diff --git a/src/conductor/web/server.py b/src/conductor/web/server.py
index 89611f6..b9e772f 100644
--- a/src/conductor/web/server.py
+++ b/src/conductor/web/server.py
@@ -129,6 +129,13 @@ async def index() -> FileResponse:
media_type="text/html",
)
+ @app.get("/favicon.svg")
+ async def favicon() -> FileResponse:
+ return FileResponse(
+ _STATIC_DIR / "favicon.svg",
+ media_type="image/svg+xml",
+ )
+
@app.get("/api/state")
async def get_state() -> JSONResponse:
return JSONResponse(content=self._event_history)
diff --git a/src/conductor/web/static/favicon.svg b/src/conductor/web/static/favicon.svg
new file mode 100644
index 0000000..ae3190d
--- /dev/null
+++ b/src/conductor/web/static/favicon.svg
@@ -0,0 +1,16 @@
+
diff --git a/src/conductor/web/static/index.html b/src/conductor/web/static/index.html
index 5611422..9db2818 100644
--- a/src/conductor/web/static/index.html
+++ b/src/conductor/web/static/index.html
@@ -2,6 +2,7 @@
+
Conductor Dashboard