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