File size: 500 Bytes
e993cf9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import streamlit as st

class AppConfig:
    def __init__(self):
        self.setup_page()

    def setup_page(self):
        st.set_page_config(
            page_title="Intervention Program Analysis", 
            page_icon=":bar_chart:", 
            layout="centered", 
            initial_sidebar_state="auto",
            menu_items={
                'Get Help': 'mailto:[email protected]',
                'About': "This app is built to support spreadsheet analysis"
            }
        )