File size: 857 Bytes
bfc7b8a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import streamlit as st


async def footer():
    footer = """

        <style>

        .footer {

            position: fixed;

            bottom: 0;

            left: 0;

            width: 100%;

            background-color: transparent;

            color: #333;

            text-align: center;

            padding: 10px;

            box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);

            z-index: 100; /* Prevent overlaying of page content on footer */

        }

        </style>

        <div class="footer">

                    &copy; 2024. Made with πŸ’– <a href="https://www.linkedin.com/in/dr-gabriel-okundaye" target="_blank" style="text-decoration: none;">Gabriel Okundaye</a>

            <span style="color: #aaaaaa;">& Light ✨</span><br>

        </div>

        """

    return st.markdown(footer, unsafe_allow_html=True)