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