Jon Solow
Move keeper load options to module to share
6d2d129
raw
history blame
514 Bytes
import streamlit as st
from config import DEFAULT_ICON
def get_app():
keeper_title = "NFL Playoff Challenge"
st.set_page_config(page_title=keeper_title, page_icon=DEFAULT_ICON)
st.markdown(
"""
Welcome!
Ready to play? - [Sign up here](./Set_Your_Lineup)
Additional Pool Rules can be found at this [worksheet](https://docs.google.com/spreadsheets/d/1aCxj383alEIpRSrROwY8vOMFDeVf175lcLUXm_I6Fok/edit?usp=sharing)
"""
)
if __name__ == "__main__":
get_app()