Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -117,14 +117,12 @@ if not st.session_state.started:
|
|
| 117 |
<div style='text-align:center;'>
|
| 118 |
<h1 style='font-size:48px;'>π Welcome to BrainQuest AI</h1>
|
| 119 |
<p style='font-size:24px;'>Test your knowledge across 10 powerful fields</p>
|
| 120 |
-
<br>
|
| 121 |
-
<form action="/">
|
| 122 |
-
<input type="submit" value="π Get Started Now" style="font-size:24px; padding:10px 30px; background-color:#4CAF50; color:white; border:none; border-radius:10px;">
|
| 123 |
-
</form>
|
| 124 |
</div>
|
| 125 |
""", unsafe_allow_html=True)
|
| 126 |
-
|
|
|
|
| 127 |
st.session_state.started = True
|
|
|
|
| 128 |
st.stop()
|
| 129 |
|
| 130 |
# Sidebar
|
|
|
|
| 117 |
<div style='text-align:center;'>
|
| 118 |
<h1 style='font-size:48px;'>π Welcome to BrainQuest AI</h1>
|
| 119 |
<p style='font-size:24px;'>Test your knowledge across 10 powerful fields</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
</div>
|
| 121 |
""", unsafe_allow_html=True)
|
| 122 |
+
|
| 123 |
+
if st.button("π Get Started Now", key="start_button", help="Click to begin the quiz experience"):
|
| 124 |
st.session_state.started = True
|
| 125 |
+
|
| 126 |
st.stop()
|
| 127 |
|
| 128 |
# Sidebar
|