parass13 commited on
Commit
5b940aa
·
verified ·
1 Parent(s): b284c02

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -40,7 +40,9 @@ html, body {
40
  }
41
  }
42
  """
43
- with gr.Blocks(title="DiaSpark: Your Health Management Platform", css=css) as demo:
 
 
44
 
45
  user_state = gr.State({"email": None, "id": None, "logged_in": False, "gender": None, "username": None})
46
 
 
40
  }
41
  }
42
  """
43
+
44
+ favicon_html_head = '<link rel="icon" type="image/png" href="/file=logo.png">'
45
+ with gr.Blocks(title="DiaSpark: Your Health Management Platform", css=css, head=favicon_html_head) as demo:
46
 
47
  user_state = gr.State({"email": None, "id": None, "logged_in": False, "gender": None, "username": None})
48