', unsafe_allow_html=True) # Title with emoji st.title("📊 ETF Portal") # Introduction st.markdown("""

Welcome to the ETF Portal

Your gateway to ETF analysis and portfolio management.

The portal is currently under maintenance. Please check back later for updates.

""", unsafe_allow_html=True) # Create two columns for the buttons col1, col2 = st.columns(2) # ETF Analyzer Button with col1: if st.button("📈 Launch ETF Analyzer", key="analyzer"): st.switch_page("pages/ETF_Analyzer.py") # Portfolio Builder Button with col2: if st.button("💼 Launch Portfolio Builder", key="portfolio"): st.switch_page("pages/ETF_Portfolio_Builder.py") st.markdown('