File size: 522 Bytes
d1da800
 
 
 
 
 
 
 
 
 
 
7aae715
 
 
 
 
 
d1da800
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import streamlit as st
import os
import sys

# Add the current directory to the Python path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))

# Import the main app
from app.main import main, sidebar_navigation, load_css

if __name__ == "__main__":
    # Initialize session state
    if 'current_week' not in st.session_state:
        st.session_state.current_week = 1
    if 'logged_in' not in st.session_state:
        st.session_state.logged_in = False
    
    load_css()
    sidebar_navigation()
    main()