-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome_template.py
28 lines (23 loc) · 956 Bytes
/
Home_template.py
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
import streamlit as st
st.set_page_config(
page_title="title ...", # Change this for your group project
# page_icon="👋", # Uncoment and modify this if you wish
)
st.header("header ...") # Change this for your group project
st.write("description ...") # Change this for your group project
# Change the data function names and descriptions for your project project
st.subheader("Data Function A ...")
st.write("Description or summary of page and fuction here ...")
st.write("\n")
st.subheader("Data Function B ...")
st.write("Description or summary of page and fuction here ...")
st.write("\n")
st.subheader("Data Function C ...")
st.write("Description or summary of page and fuction here ...")
st.write("\n")
st.subheader("Data Function D ...")
st.write("Description or summary of page and fuction here ...")
st.write("\n")
st.subheader("Data Function E ...")
st.write("Description or summary of page and fuction here ...")
st.write("\n")