import streamlit as st from app_shared import IMAGE_PATHS, safe_image_display def main(): abstract_col, figure_col = st.columns([0.9, 1.1]) with abstract_col: st.markdown('

About

', unsafe_allow_html=True) st.markdown("平台使用流程等") with figure_col: st.markdown('

General Framework

', unsafe_allow_html=True) safe_image_display(IMAGE_PATHS["framework"], "Framework Overview", use_container_width=True) st.markdown("---") st.markdown("⚠️ This website is at an early stage of development and intended for research purposes only...")