import streamlit as st import sys import os # Add the project directory to the path to make imports work sys.path.append(os.path.dirname(os.path.abspath(__file__))) from pages import home, search, quiz, workout_plans, remedies # Set page configuration st.set_page_config( page_title="WikiFit", page_icon="💪", layout="wide", initial_sidebar_state="expanded" ) # Custom CSS st.markdown(""" """, unsafe_allow_html=True) # Header st.markdown('

WikiFit

Your AI Fitness Wiki

', unsafe_allow_html=True) # Navigation pages = { "Home": home, "Search": search, "Quiz": quiz, "Workout Plans": workout_plans, "Remedies": remedies } # Sidebar for navigation st.sidebar.title("Navigation") selection = st.sidebar.radio("Go to", list(pages.keys())) # Render the selected page pages[selection].app() # Footer st.markdown('', unsafe_allow_html=True)