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:hello@simplexico.ai', 'Report a bug': None, 'About': "## This a demo showcasing different Legal AI Actions" } ) add_logo_to_sidebar() st.sidebar.success("👆 Select a demo above.") st.title('🔎 Find Demo') st.markdown("🏗 This demo is currently under construction. Please visit back soon.") add_email_signup_form() add_footer()