TESTING / components /header.py
HansTran's picture
Upload 18 files
aca9d3a verified
Raw
History Blame Contribute Delete
429 Bytes
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,
)