Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,13 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
-
|
8 |
-
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
def display_html():
|
4 |
+
html_content = """
|
5 |
+
<div style="text-align: center;">
|
6 |
+
<h1>Hello!</h1>
|
7 |
+
<p> This Space is currently down....please switch to the Spaces I'm about to launch....Thanks for your support!</p>
|
8 |
+
</div>
|
9 |
+
"""
|
10 |
+
return html_content
|
11 |
|
12 |
+
with gr.Interface(fn=display_html, inputs=[], outputs=gr.HTML()):
|
13 |
+
gr.Interface.launch()
|