forked from bhaskoro-muthohar/KaPaN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
46 lines (37 loc) · 1.2 KB
/
app.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import streamlit as st
st.set_page_config(
page_title="4SKA1 Dashboard",
page_icon="🌾",
layout="wide",
initial_sidebar_state="expanded",
menu_items={
'Report a bug': "mailto:[email protected]",
'About': "# [Click for the secret](https://www.youtube.com/watch?v=dQw4w9WgXcQ)"
}
)
# def main():
# st.sidebar.title("Navigation")
# pages = {
# "Home": home.app,
# "Extreme Climate Prediction": extreme_climate_pred.app,
# "Submit Form": submit_form.app,
# }
# selection = st.sidebar.radio("Go to", list(pages.keys()))
# pages[selection]()
# if __name__ == "__main__":
# from pages import home, submit_form, extreme_climate_pred
# main()
st.title('Welcome to KaPaN')
st.write('by Team 4SKA1 for UN Data Hackathon 2023')
st.markdown('''
We presented a website developed to empower farmers with knowledge.
There are 3 features farmers can use:
1. Farmers can see when extreme weather will happen next
1. Farmers can see where extreme weather will happen next
1. Farmers can post updates about conditions of their fields
Members:
- Bhaskoro Muthohar
- Bagoes Rahmat Widiarso
- Figarri Keisha
- Muhammad Nassirudin
''')