Update app.py
Browse files
app.py
CHANGED
@@ -182,17 +182,6 @@ theme = gr.themes.Default(
|
|
182 |
)
|
183 |
|
184 |
# Setup the Gradio Blocks interface with custom layout components
|
185 |
-
with gr.Blocks(theme='gstaff/xkcd') as demo:
|
186 |
-
with gr.Row().style(equal_height=True):
|
187 |
-
with gr.Column(scale=10):
|
188 |
-
gr.Markdown(
|
189 |
-
"""
|
190 |
-
# Theme preview: `xkcd`
|
191 |
-
To use this theme, set `theme='gstaff/xkcd'` in `gr.Blocks()` or `gr.Interface()`.
|
192 |
-
You can append an `@` and a semantic version expression, e.g. @>=1.0.0,<2.0.0 to pin to a given version
|
193 |
-
of this theme.
|
194 |
-
"""
|
195 |
-
)
|
196 |
with gr.Blocks(theme=theme) as demo:
|
197 |
gr.Image("CalmConnect.jpg", show_label = False, show_share_button = False, show_download_button = False)
|
198 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
|
|
182 |
)
|
183 |
|
184 |
# Setup the Gradio Blocks interface with custom layout components
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
with gr.Blocks(theme=theme) as demo:
|
186 |
gr.Image("CalmConnect.jpg", show_label = False, show_share_button = False, show_download_button = False)
|
187 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|