Spaces:
Running
Running
Create Home.py
Browse files- pages/Home.py +10 -0
pages/Home.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# FIRST: Set page config before ANY other Streamlit command
|
4 |
+
st.set_page_config(page_title="Spirituality Q&A", page_icon="🕉️")
|
5 |
+
|
6 |
+
# Import and run the main app code
|
7 |
+
from app import run_app
|
8 |
+
|
9 |
+
# Execute the app
|
10 |
+
run_app()
|