fadzwan commited on
Commit
2e8ae12
·
verified ·
1 Parent(s): b0713c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -0
app.py CHANGED
@@ -90,3 +90,31 @@ if uploaded_file is not None:
90
 
91
  # Optional: Clean up temporary file
92
  os.remove(temp_audio_path)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
  # Optional: Clean up temporary file
92
  os.remove(temp_audio_path)
93
+
94
+
95
+
96
+ st.write("### Developer Team")
97
+ developer_info = [
98
+ {"name": "Faheyra", "image_url": "https://italeemc.iium.edu.my/pluginfile.php/21200/user/icon/remui/f3?rev=40826", "title": "MLetops Engineer"},
99
+ {"name": "Adilah", "image_url": "https://italeemc.iium.edu.my/pluginfile.php/21229/user/icon/remui/f3?rev=43498", "title": "Ra-Sis-Chear"},
100
+ {"name": "Aida", "image_url": "https://italeemc.iium.edu.my/pluginfile.php/21236/user/icon/remui/f3?rev=43918", "title": "Ra-Sis-Chear"},
101
+ {"name": "Naufal", "image_url": "https://italeemc.iium.edu.my/pluginfile.php/21260/user/icon/remui/f3?rev=400622", "title": "Rizzichear"},
102
+ {"name": "Fadzwan", "image_url": "https://italeemc.iium.edu.my/pluginfile.php/21094/user/icon/remui/f3?rev=59457", "title": "Nasser"},
103
+ ]
104
+
105
+ # Dynamically create columns based on the number of developers
106
+ num_devs = len(developer_info)
107
+ cols = st.columns(num_devs)
108
+
109
+ # Display the developer profiles
110
+ for idx, dev in enumerate(developer_info):
111
+ col = cols[idx]
112
+ with col:
113
+ st.markdown(
114
+ f'<div style="display: flex; flex-direction: column; align-items: center;">'
115
+ f'<img src="{dev["image_url"]}" width="100" style="border-radius: 50%;">'
116
+ f'<p>{dev["name"]}<br>{dev["title"]}</p>'
117
+ f'<p></p>'
118
+ f'</div>',
119
+ unsafe_allow_html=True
120
+ )