import streamlit as st import streamlit.components.v1 as components import base64 # Configure the app - this must be the first Streamlit command st.set_page_config( page_title="HeatTransPlan App", page_icon="", initial_sidebar_state="expanded" ) # Apply styles immediately to prevent flash st.markdown( """ """, unsafe_allow_html=True, ) # Home page content st.title("Home page")