File size: 761 Bytes
ac49a80
 
 
 
bb9efa9
ac49a80
 
806014f
ac49a80
 
 
806014f
ac49a80
806014f
5952d72
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
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("<h2 style='text-align: center; color: black;'>This is the demo for the usecases we've worked on.</h1>", unsafe_allow_html=True)

st.markdown("<h3 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)
    
st.markdown(
 '''
<style>
body {
background-image: url("https://unsplash.com/photos/pen-on-paper-6EnTPvPPL6I");
background-size: cover;
}
</style>
''',
 unsafe_allow_html=True
)