AutoML / src /ui /footer.py
akash
all files
890025a
raw
history blame contribute delete
271 Bytes
import streamlit as st
def show_footer():
"""Display footer with copyright information."""
footer_html = """
<div class="footer">
© 2025 AutoML All Rights Reserved.
</div>
"""
st.markdown(footer_html, unsafe_allow_html=True)