-
Notifications
You must be signed in to change notification settings - Fork 2
/
team.py
26 lines (22 loc) · 928 Bytes
/
team.py
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
import streamlit as st
import webbrowser
def team_details():
st.title("Our Team")
team_members = [
{
"name": "Mohammed Musharraf",
"role": "Founder & Developer",
"description": "Mohammed Musharraf is dedicated to crafting innovative digital solutions. With a strong foundation in app and web development, he is passionate about utilizing technology to address real-world problems.",
"gmail": "[email protected]",
"usn": "SRN: PES2UG23CS915"
}
]
for member in team_members:
st.header(member["name"])
st.subheader(member["role"])
st.write(member["description"])
st.write(member["usn"])
if st.button(f"Contact {member['name']} via Gmail"):
webbrowser.open_new_tab(f"mailto:{member['gmail']}?subject=Regarding%20PawSome-AI%20App")
if __name__ == "__main__":
team_details()