File size: 467 Bytes
869dc68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import streamlit as st

st.set_page_config(
    page_title="Hello",
    page_icon="πŸ‘‹",
)

st.write("# Welcome to ProteinDesignDemo! πŸ‘‹")

st.markdown(
    """
    ProteinDesignDemo is an demo framework built specifically for
    protein design.

**πŸ‘ˆ Select a page from the sidebar** to see some examples
    of what ProteinDesignDemo can do!
    ### Want to learn more?
    - Jump into [documentation](https://www.nature.com/articles/s41586-023-06728-8)
"""
)