edu-app-mvp / utils /ui_utils.py
1yahoo's picture
Upload folder using huggingface_hub
8496270 verified
Raw
History Blame Contribute Delete
358 Bytes
import streamlit as st
def styled_card(title, content):
"""Render a styled card in Streamlit."""
st.markdown(f"""
<div class="card">
<h3>{title}</h3>
<p>{content}</p>
</div>
""", unsafe_allow_html=True)
def progress_bar(label, value):
"""Custom progress bar with label."""
st.write(label)
st.progress(value)