Spaces:
Sleeping
Sleeping
| 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) | |