diff --git a/App.py b/App.py index 20f3028e..af13166a 100644 --- a/App.py +++ b/App.py @@ -3,7 +3,10 @@ st.set_page_config(page_title="Predictive Calc - Machine Learning Models", page_icon="🤖") st.title("Welcome to Predictive Calc!") -st.image('machine-learning.gif', caption='Your Hub for Predictive Insights', use_column_width=True) +# Place image +col1, col2, col3 = st.columns([1, 2, 1]) +with col2: + st.image('assets/images/machine_learning.png', caption='Your Hub for Predictive Insights', use_column_width=False, width=350) st.markdown(""" ## Explore Cutting-Edge Machine Learning Models diff --git a/assets/images/machine_learning.png b/assets/images/machine_learning.png new file mode 100644 index 00000000..e0a8d302 Binary files /dev/null and b/assets/images/machine_learning.png differ