File size: 349 Bytes
f4ea2df
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import streamlit as st
from app.pages import farmer, marketplace, health, advisor

# Navigation between pages
pages = {
    "Farmer Registration": farmer.show,
    "Marketplace": marketplace.show,
    "Health Benefits": health.show,
    "Farming Tips": advisor.show,
}

choice = st.sidebar.radio("Select a Page", list(pages.keys()))
pages[choice]()