Jon Solow
Remove all yfdashboard specific that wont carry over
ddb39cb
raw
history blame
548 Bytes
import streamlit as st
from config import DEFAULT_ICON
from login_component import get_authorization_button
def get_app():
keeper_title = "NFL Playoff Challenge"
st.set_page_config(page_title=keeper_title, page_icon=DEFAULT_ICON)
get_authorization_button()
st.markdown(
"""
Welcome!
Navigate between pages using the left sidebar.
If the sidebar is not visible, click the **>** in the upper left corner to open.
"""
)
if __name__ == "__main__":
get_app()