[fd0c0d]: / Tabs / about.py

Download this file

18 lines (14 with data), 462 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
"""This modules contains data about about page"""
# Import necessary modules
import streamlit as st
from PIL import Image
def app():
"""This function creates the about page"""
st.balloons()
st.title('Contact Us')
st.markdown('''### Name:
Mainak Chaudhuri''')
st.markdown('''### Email:
mainakc24365@gmail.com''')
st.image("./images/icon.jpg")
st.markdown('''### GitHub: [Mainak](https://github.com/MainakRepositor/)''')