Spaces:
Runtime error
Runtime error
import streamlit as st | |
from utils import add_logo_to_sidebar, add_footer, add_email_signup_form | |
st.set_page_config( | |
page_title="Find Demo", | |
page_icon="π", | |
layout="wide", | |
initial_sidebar_state="expanded", | |
menu_items={ | |
'Get Help': 'mailto:[email protected]', | |
'Report a bug': None, | |
'About': "## This a demo showcasing different Legal AI Actions" | |
} | |
) | |
add_logo_to_sidebar() | |
st.title('π Find Demo') | |
st.markdown("π This demo is currently under construction. Please visit back soon.") | |
add_email_signup_form() | |
add_footer() |