Spaces:
Build error
Build error
Romeo David commited on
Commit ·
986aee4
1
Parent(s): 3b9755a
added back button
Browse files- pages/analyzing_page.py +8 -3
pages/analyzing_page.py
CHANGED
|
@@ -84,9 +84,14 @@ def run_analysis():
|
|
| 84 |
seo_thread.join()
|
| 85 |
st.success("🎉 All analyses completed!") # Final success message
|
| 86 |
# --- Display Button After Completion ---
|
| 87 |
-
if st.button("View Results"):
|
| 88 |
-
|
| 89 |
|
|
|
|
|
|
|
|
|
|
| 90 |
|
| 91 |
# Execute the analysis
|
| 92 |
-
|
|
|
|
|
|
|
|
|
| 84 |
seo_thread.join()
|
| 85 |
st.success("🎉 All analyses completed!") # Final success message
|
| 86 |
# --- Display Button After Completion ---
|
| 87 |
+
# if st.button("View Results"):
|
| 88 |
+
# st.switch_page("pages/output.py")
|
| 89 |
|
| 90 |
+
|
| 91 |
+
|
| 92 |
+
|
| 93 |
|
| 94 |
# Execute the analysis
|
| 95 |
+
if st.button("Back"):
|
| 96 |
+
st.switch_page("pages/home.py")
|
| 97 |
+
run_analysis()
|