import streamlit as st | |
class AppConfig: | |
def __init__(self): | |
self.setup_page() | |
def setup_page(self): | |
st.set_page_config( | |
page_title="Literacy Implementation Record Data Analysis", | |
page_icon=":bar_chart:", | |
layout="centered", | |
initial_sidebar_state="auto", | |
menu_items={ | |
'Get Help': 'mailto:[email protected]', | |
'About': "This tool summarizes implementation record data for student attendance, engagement, and intervention dosage" | |
} | |
) |