File size: 429 Bytes
21fe460 deff3f3 aa0d878 deff3f3 21fe460 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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,
)
|