DataAIDemo / app.py
themeetjani's picture
Update app.py
58dd73c verified
raw history blame
No virus
761 Bytes
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
)