File size: 635 Bytes
73df6bf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import streamlit as st
from utils import add_logo_to_sidebar, add_footer, add_email_signup_form

st.set_page_config(
    page_title="Summarise 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('πŸ“ Summarise Demo')
st.markdown("πŸ— This demo is currently under construction. Please visit back soon.")

add_email_signup_form()

add_footer()