File size: 514 Bytes
dd64f21 ddb39cb dd64f21 ddb39cb dd64f21 ddb39cb dd64f21 755c89e 6d2d129 dd64f21 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
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()
|