FarmFreshSVG / app.py
taarhissian's picture
Update app.py
236021f verified
raw
history blame contribute delete
350 Bytes
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]()