Under your working or app folder, create a folder named .streamlit. Under .streamlit folder create a file named config.toml. In config.toml file write the following.
[client]
showSidebarNavigation = false
You can create a page_link to navigate to other pages.
import streamlit as st
with st.sidebar:
st.page_link('pages/basketball.py', label='Basketball', icon='🏀')
st.header('Home')
In another page say basketball do not add a sidebar widgets, but you can add a page_link navigation button to return back to the home page.
import streamlit as st
st.page_link('main.py', label='Home', icon='🏆')
st.header('Basketball')