| import streamlit as st | |
| def render_header() -> None: | |
| st.markdown( | |
| """ | |
| <section class="hero-shell"> | |
| <div class="hero-row"> | |
| <div> | |
| <span class="hero-eyebrow">Time Card Generator</span> | |
| <h1 class="hero-title">Fast shift cards.</h1> | |
| </div> | |
| </div> | |
| </section> | |
| """, | |
| unsafe_allow_html=True, | |
| ) | |