File size: 895 Bytes
7878c8d
422eddd
 
7878c8d
 
 
 
 
 
422eddd
7878c8d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
422eddd
 
 
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
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)
        """
        )