Add page title and favicon.
Browse files- app.py +2 -2
- favicon-96x96.png +0 -0
app.py
CHANGED
@@ -107,7 +107,7 @@ def update_state(requirements: [str], error: str):
|
|
107 |
return '\n'.join(sorted(requirements)), error
|
108 |
|
109 |
|
110 |
-
with gr.Blocks() as demo:
|
111 |
gr.Markdown("<h1 id=\"TEST\" align=\"center\"><a href=\"?\">KiteWind</a> πͺπ</h1>")
|
112 |
gr.Markdown(
|
113 |
"<h4 align=\"center\">Chat-assisted web app creator by <a href=\"https://huggingface.co/gstaff\">@gstaff</a></h4>")
|
@@ -210,4 +210,4 @@ with gr.Blocks() as demo:
|
|
210 |
demo.css = "footer {visibility: hidden}"
|
211 |
|
212 |
if __name__ == "__main__":
|
213 |
-
demo.queue().launch()
|
|
|
107 |
return '\n'.join(sorted(requirements)), error
|
108 |
|
109 |
|
110 |
+
with gr.Blocks(title="KiteWind") as demo:
|
111 |
gr.Markdown("<h1 id=\"TEST\" align=\"center\"><a href=\"?\">KiteWind</a> πͺπ</h1>")
|
112 |
gr.Markdown(
|
113 |
"<h4 align=\"center\">Chat-assisted web app creator by <a href=\"https://huggingface.co/gstaff\">@gstaff</a></h4>")
|
|
|
210 |
demo.css = "footer {visibility: hidden}"
|
211 |
|
212 |
if __name__ == "__main__":
|
213 |
+
demo.queue().launch(favicon_path='favicon-96x96.png')
|
favicon-96x96.png
ADDED