File size: 827 Bytes
ac49a80
 
 
 
bb9efa9
ac49a80
 
bd8ded1
ac49a80
 
 
8a85541
ac49a80
5952d72
 
ac49a80
 
 
8a85541
ac49a80
 
bd8ded1
 
 
 
 
 
 
 
ac49a80
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import streamlit as st
import pandas as pd
 
st.set_page_config(
    page_title="app",
    page_icon="👋",
)
st.markdown("<h1 style='text-align: center; color: black;'> Welcome to DataAI! 👋</h1>", unsafe_allow_html=True)

st.sidebar.success("Select a demo above.")

st.markdown("<h1 style='text-align: center; color: black;'>This is the demo for the usecases we've worked on.</h1>", unsafe_allow_html=True)

st.markdown("<h2 style='text-align: center; color: black;'>Select a demo from the sidebar** to see some examples of what we can do!!! </h2>", unsafe_allow_html=True)
    
import base64

main_bg_ext = "jpg"
main_bg = "vally.jpg"
        
st.markdown(
 '''
<style>
body {
background-image: url("https://unsplash.com/photos/pen-on-paper-6EnTPvPPL6I");
background-size: cover;
}
</style>
''',
 unsafe_allow_html=True
)