File size: 234 Bytes
f128fe5
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import streamlit as st
from menu import menu_with_redirect

# Redirect to app.py if not logged in, otherwise show the navigation menu
menu_with_redirect()

st.title("Welcome to Gravity")
st.markdown(f"Hello, {st.session_state.name}!")