Spaces:
Sleeping
Sleeping
Upload 3 files
Browse files
app.py
CHANGED
|
@@ -402,7 +402,7 @@ with gr.Blocks() as app:
|
|
| 402 |
welcome_screen = gr.Column(visible=True)
|
| 403 |
full_app = gr.Tabs(visible=False)
|
| 404 |
|
| 405 |
-
|
| 406 |
gr.HTML("""
|
| 407 |
<style>
|
| 408 |
#main-title {
|
|
@@ -449,6 +449,13 @@ with gr.Blocks() as app:
|
|
| 449 |
""")
|
| 450 |
gr.Markdown("<h1 id='main-title'>StrongMind Therapist 2.0</h1>")
|
| 451 |
gr.Markdown("<h3 id='subtitle'>Your peaceful space to talk, journal, and focus.</h3>")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 452 |
start_button = gr.Button("🌸 Get Started", elem_id="start-btn")
|
| 453 |
|
| 454 |
return gr.update(visible=False), gr.update(visible=True)
|
|
|
|
| 402 |
welcome_screen = gr.Column(visible=True)
|
| 403 |
full_app = gr.Tabs(visible=False)
|
| 404 |
|
| 405 |
+
with welcome_screen:
|
| 406 |
gr.HTML("""
|
| 407 |
<style>
|
| 408 |
#main-title {
|
|
|
|
| 449 |
""")
|
| 450 |
gr.Markdown("<h1 id='main-title'>StrongMind Therapist 2.0</h1>")
|
| 451 |
gr.Markdown("<h3 id='subtitle'>Your peaceful space to talk, journal, and focus.</h3>")
|
| 452 |
+
start_button = gr.Button("🌸 Get Started", elem_id="start-btn")
|
| 453 |
+
|
| 454 |
+
}
|
| 455 |
+
</style>
|
| 456 |
+
""")
|
| 457 |
+
gr.Markdown("<h1 id='main-title'>StrongMind Therapist 2.0</h1>")
|
| 458 |
+
gr.Markdown("<h3 id='subtitle'>Your peaceful space to talk, journal, and focus.</h3>")
|
| 459 |
start_button = gr.Button("🌸 Get Started", elem_id="start-btn")
|
| 460 |
|
| 461 |
return gr.update(visible=False), gr.update(visible=True)
|