| 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('<h4 style="font-size:22px;">About</h4>', unsafe_allow_html=True) | |
| st.markdown("平台使用流程等") | |
| with figure_col: | |
| st.markdown('<h4 style="font-size:22px;">General Framework</h4>', 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...") | |