Tutorials / app.py
MrJShen's picture
Update app.py
d6c04a4
raw
history blame contribute delete
895 Bytes
import streamlit as st
import streamlit_book as stb
st.set_page_config(
page_title="Welcome to AI club",
page_icon="πŸ‘‹",
)
## Page layout
@st.cache_data
def main_layout():
st.markdown(
"""
This is our weekly tutorial pages.
**πŸ‘ˆ Select the weekly tutorial/tasks from the sidebar** to follow step by step.
"""
)
main_layout()
st.markdown("""
### Our member profile
- Coming soon ...
### Our AI apps
- Coming soon ...
### Relevent Documents (only if you have time to explore them by yourself)
- [Streamlit HowTos](https://docs.streamlit.io/library/api-reference)
- [Hugging Face HowTos](https://huggingface.co/docs/hub/spaces)
- [Learn to ClickUp](https://help.clickup.com/hc/en-us/categories/5414365970455-Features)
"""
)