Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -316,6 +316,17 @@ def generate_audio_elevenlabs(text):
|
|
316 |
with gr.Blocks(theme='rawrsor1/Everforest') as demo:
|
317 |
with gr.Row():
|
318 |
with gr.Column():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
chatbot = gr.Chatbot([], elem_id="chatbot", bubble_full_width=False)
|
320 |
|
321 |
# with gr.Column():
|
|
|
316 |
with gr.Blocks(theme='rawrsor1/Everforest') as demo:
|
317 |
with gr.Row():
|
318 |
with gr.Column():
|
319 |
+
gr.HTML('''
|
320 |
+
<div style="animation: fadeIn 2s ease-in-out infinite alternate;">
|
321 |
+
<h1 style="font-size: 4em; text-align: center; color: #4CAF50;">Welcome to Omaha Events</h1>
|
322 |
+
</div>
|
323 |
+
<style>
|
324 |
+
@keyframes fadeIn {
|
325 |
+
from { opacity: 0; }
|
326 |
+
to { opacity: 1; }
|
327 |
+
}
|
328 |
+
</style>
|
329 |
+
''')
|
330 |
chatbot = gr.Chatbot([], elem_id="chatbot", bubble_full_width=False)
|
331 |
|
332 |
# with gr.Column():
|