File size: 619 Bytes
5b24075
 
 
 
 
 
 
 
 
b41af98
5b24075
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st

def main():
    st.set_page_config(layout="wide", page_title="Messis 🌾 - Crop Classification 🌎")

    st.title("Messis 🌾 - Crop Classification 🌎")

    st.write("Welcome to the Messis Crop Classification app. Use the sidebar to navigate between selecting coordinates and performing inference.")

    st.page_link("app.py", label="Home", icon="🏠")
    st.page_link("pages/1_Select_Location.py", label="Select Location", icon="πŸ“")
    st.page_link("pages/2_Perform_Crop_Classification.py", label="Perform Crop Classification", icon="πŸ”")

if __name__ == "__main__":
    main()