ankanghosh commited on
Commit
54c389a
·
verified ·
1 Parent(s): 539b6a9

Create Home.py

Browse files
Files changed (1) hide show
  1. 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()