Tutorials / app.py
MrJShen's picture
update A bite of math
e12ab40
raw
history blame
1.04 kB
import streamlit as st
import extra_streamlit_components as stx
import spacy_streamlit
import streamlit_book as stb
st.set_page_config(
page_title="Welcome to AI club",
page_icon="πŸ‘‹",
)
def get_manager():
return stx.CookieManager()
cookie_manager = get_manager()
## 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)
"""
)