affine commited on
Commit
69eff94
·
1 Parent(s): 09f3c23

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -1
app.py CHANGED
@@ -1,5 +1,9 @@
1
  import streamlit as st
 
 
2
  st.set_page_config("Home")
 
 
3
  ## logo
4
  with st.sidebar:
5
  st.markdown("""<div style='text-align: left; margin-top:-200px;margin-left:-40px;'>
@@ -8,7 +12,23 @@ with st.sidebar:
8
 
9
 
10
 
11
- st.title("IntelliForecast")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  st.header("Description")
13
  st.write("Affine Time Series Toolbox is a powerful and versatile tool designed to handle multiple time series data. It excels in forecasting demand with a high level of granularity, allowing for precise predictions at the store and product level. By leveraging this tool, businesses can minimize the need for constant model maintenance and reduce resource demands, all while ensuring accurate and reliable demand forecasts. Its wide-ranging capabilities make it suitable for application in various domains, from e-commerce to the energy sector.")
14
 
 
1
  import streamlit as st
2
+
3
+
4
  st.set_page_config("Home")
5
+
6
+
7
  ## logo
8
  with st.sidebar:
9
  st.markdown("""<div style='text-align: left; margin-top:-200px;margin-left:-40px;'>
 
12
 
13
 
14
 
15
+ st.markdown("""
16
+ <div style='text-align: center; margin-top:-70px; margin-bottom: 5px;margin-left: -50px;'>
17
+ <h2 style='font-size: 20px; font-family: Courier New, monospace;
18
+ letter-spacing: 2px; text-decoration: none;'>
19
+ <img src="https://acis.affineanalytics.co.in/assets/images/logo_small.png" alt="logo" width="70" height="30">
20
+ <span style='background: linear-gradient(45deg, #ed4965, #c05aaf);
21
+ -webkit-background-clip: text;
22
+ -webkit-text-fill-color: transparent;
23
+ text-shadow: none;'>
24
+ Energy Demand Forecasting Dashboard
25
+ </span>
26
+ <span style='font-size: 40%;'>
27
+ <sup style='position: relative; top: 5px; color: #ed4965;'>by Affine</sup>
28
+ </span>
29
+ </h2>
30
+ </div>
31
+ """, unsafe_allow_html=True)
32
  st.header("Description")
33
  st.write("Affine Time Series Toolbox is a powerful and versatile tool designed to handle multiple time series data. It excels in forecasting demand with a high level of granularity, allowing for precise predictions at the store and product level. By leveraging this tool, businesses can minimize the need for constant model maintenance and reduce resource demands, all while ensuring accurate and reliable demand forecasts. Its wide-ranging capabilities make it suitable for application in various domains, from e-commerce to the energy sector.")
34