Spaces:
Runtime error
Runtime error
File size: 1,042 Bytes
7878c8d e12ab40 7878c8d e12ab40 7878c8d e12ab40 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
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)
"""
)
|