File size: 271 Bytes
890025a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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)