ProfessorLeVesseur commited on
Commit
e993cf9
1 Parent(s): 6ea871f

Create app_config.py

Browse files
Files changed (1) hide show
  1. app_config.py +17 -0
app_config.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ class AppConfig:
4
+ def __init__(self):
5
+ self.setup_page()
6
+
7
+ def setup_page(self):
8
+ st.set_page_config(
9
+ page_title="Intervention Program Analysis",
10
+ page_icon=":bar_chart:",
11
+ layout="centered",
12
+ initial_sidebar_state="auto",
13
+ menu_items={
14
+ 'Get Help': 'mailto:[email protected]',
15
+ 'About': "This app is built to support spreadsheet analysis"
16
+ }
17
+ )