""" Header components for the leaderboard application. """ import streamlit as st from src.utils.config import app_config def render_page_header(): """ Render the page header with title and description """ st.markdown( f"""

{app_config['title']}

{app_config['description']}

""", unsafe_allow_html=True ) # Add the links line separately, outside the header box st.markdown( f""" """, unsafe_allow_html=True ) def render_section_header(title): """ Render a section header Args: title (str): The section title """ st.markdown(f"### {title}") def render_footer(): """ Render the page footer """ # Footer content removed per user request pass # ๐Ÿค— HuggingFace |