Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -8,7 +8,7 @@ from src.utils.ui import set_page_config, apply_custom_css
|
|
| 8 |
|
| 9 |
def main():
|
| 10 |
# Initialize app
|
| 11 |
-
set_page_config()
|
| 12 |
apply_custom_css()
|
| 13 |
initialize_session_state()
|
| 14 |
|
|
@@ -20,11 +20,11 @@ def main():
|
|
| 20 |
Sidebar.display()
|
| 21 |
|
| 22 |
# Title
|
| 23 |
-
st.title("
|
| 24 |
|
| 25 |
# Welcome message for new users
|
| 26 |
if 'username' not in st.session_state:
|
| 27 |
-
st.info("👋 Welcome to
|
| 28 |
return
|
| 29 |
|
| 30 |
# Main content tabs
|
|
|
|
| 8 |
|
| 9 |
def main():
|
| 10 |
# Initialize app
|
| 11 |
+
set_page_config(page_title="Guru.AI - Your AI Mentor", page_icon="🤖")
|
| 12 |
apply_custom_css()
|
| 13 |
initialize_session_state()
|
| 14 |
|
|
|
|
| 20 |
Sidebar.display()
|
| 21 |
|
| 22 |
# Title
|
| 23 |
+
st.title("🤖 Guru.AI - Your AI Mentor")
|
| 24 |
|
| 25 |
# Welcome message for new users
|
| 26 |
if 'username' not in st.session_state:
|
| 27 |
+
st.info("👋 Welcome to Guru.AI! Please enter your nickname to start learning.")
|
| 28 |
return
|
| 29 |
|
| 30 |
# Main content tabs
|