Spaces:
Runtime error
Runtime error
File size: 536 Bytes
01a0fbf |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
st.set_page_config("forecasting")
## logo
with st.sidebar:
st.markdown("""<div style='text-align: left; margin-top:-230px;margin-left:-40px;'>
<img src="https://affine.ai/wp-content/uploads/2023/05/Affine-Logo.svg" alt="logo" width="300" height="60">
</div>""", unsafe_allow_html=True)
st.markdown("""<div style='text-align: center; margin-top:0px;'>
<img src="https://acis.affineanalytics.co.in/assets/images/logo.svg" alt="logo" width="600" height="400 ">
</div>""", unsafe_allow_html=True)
|