import streamlit as st from ui import build_ui # Defining page settings st.set_page_config( page_title="PortfolioPro", page_icon="💰", layout='wide', initial_sidebar_state='expanded' ) # Set custom theme st.markdown(""" """, unsafe_allow_html=True) # Build the UI build_ui()