Spaces:
Runtime error
Runtime error
File size: 1,663 Bytes
fc19647 e6e44e5 fc19647 e6e44e5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | 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("""
<style>
.main {
padding: 2rem;
}
.stApp {
background-color: black;
}
footer {
visibility: hidden;
}
#MainMenu {
visibility: visible;
}
.fitness-element {
display: none; /* Hide animated elements as they're not easily recreated in Streamlit */
}
.header {
background-color: #4CAF50;
padding: 1rem;
color: white;
text-align: center;
border-radius: 10px;
margin-bottom: 2rem;
}
.footer {
margin-top: 2rem;
text-align: center;
padding: 1rem;
background-color: #f1f1f1;
border-radius: 10px;
}
</style>
""", unsafe_allow_html=True)
# Header
st.markdown('<div class="header"><h1>WikiFit</h1><p>Your AI Fitness Wiki</p></div>', 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('<div class="footer">© 2025 WikiFit - Your AI Fitness Wiki</div>', unsafe_allow_html=True) |