import streamlit as st

st.set_page_config(
    page_title="Hello",
    page_icon="👋",
)

st.write("# Welcome to Signify! 👋")

st.sidebar.success("Select a demo above.")

st.markdown(
    """
    Signfiy is an open-source project addressing core problems in signature verification with the help of deep learning.
    ### 3 Tasks
    - Signature Detection (Object detection with YOLO)
    - Signature Cleaning (Cycle-GAN)
    - Signature Verification (Siamese Model)

    **👈 Select a demo from the sidebar** 
    ### Want to learn more?
    - [Github Page](https://streamlit.io)
    - Ask a question at markus@essl.me
"""
)