| 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 demo. Use the sidebar to navigate between selecting the location you are interested in and performing crop classification.") | |
| st.page_link("Home.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() | |