Spaces:
Sleeping
Sleeping
| 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 | |
| ) |