Skip to content
Snippets Groups Projects
header.py 385 B
Newer Older
from Packages import *
def add_header():
    st.markdown(
        """
        <div style="width: 100%; background-color: #4682B4; padding: 10px; margin-bottom: 10px;">
          <h1 style="text-align: center; color: white;">PACE - MEEB / CEFE</h1>
          <h2 style="text-align: center; color: white;">NIRS Utils</h2>
        </div>
        """,
        unsafe_allow_html=True,
    )