verifiability / app.py
prakharg24's picture
Update app.py
baa279a verified
raw
history blame
488 Bytes
import streamlit as st
from my_pages import landing, home, ica
# --- Configure the app ---
st.set_page_config(page_title="Multiplicity Demo", layout="centered")
# --- Initialize session state ---
if "page" not in st.session_state:
st.session_state.page = "landing" # can be: landing, main, sentence_X
# Routing
if st.session_state.page == "landing":
landing.render()
elif st.session_state.page == "home":
home.render()
elif st.session_state.page == "ica":
ica.render()