File size: 786 Bytes
3087373
 
95ba32b
3087373
4a3a4a3
95ba32b
3087373
 
95ba32b
 
 
 
 
 
 
 
 
 
 
 
4a3a4a3
73df6bf
4a3a4a3
95ba32b
4a3a4a3
 
 
 
3087373
 
 
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
27
28
29
30
31
import os

import streamlit as st
import streamlit_analytics
from utils import add_logo_to_sidebar, add_footer, add_email_signup_form

streamlit_analytics.start_tracking()

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.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()

streamlit_analytics.stop_tracking(unsafe_password=os.environ["ANALYTICS_PASSWORD"])