Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| def show_dashboard(): | |
| """Show the main dashboard""" | |
| st.title("๐ Debate Class Dashboard") | |
| st.markdown("---") | |
| # Welcome message | |
| st.markdown(f"### Welcome back, {st.session_state.name}!") | |
| st.markdown("This is your central hub for all debate class activities and materials.") | |
| # Current week information | |
| st.subheader("๐ Current Week") | |
| st.markdown("**Week 1: Introduction to Debate**") | |
| st.markdown("We are currently in Week 1 of the debate course.") | |
| st.markdown("---") | |
| # Quick access to current week | |
| st.subheader("๐ฏ This Week's Focus") | |
| with st.container(): | |
| st.markdown(""" | |
| **Week 1: Introduction to Debate** | |
| - Understanding debate formats | |
| - Basic argument structure | |
| - Public speaking fundamentals | |
| """) | |
| if st.button("Go to Week 1 Content", type="primary", key="dashboard_week1_button"): | |
| st.rerun() |