nicolacaione commited on
Commit
3bfa464
·
verified ·
1 Parent(s): 866fd71

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -7,4 +7,15 @@ st.title("GTT demo")
7
  video_path = "GTT demo.mp4" # Cambia con il tuo file o link
8
 
9
  # Mostra il video
10
- st.video(video_path)
 
 
 
 
 
 
 
 
 
 
 
 
7
  video_path = "GTT demo.mp4" # Cambia con il tuo file o link
8
 
9
  # Mostra il video
10
+ st.video(video_path)
11
+
12
+ st.title("Download the GTT presentation")
13
+
14
+ pptx_file = "6_Nicola_Diversity and Inclusion_6.2.2025.pptx" # Cambia con il nome del file
15
+ with open(pptx_file, "rb") as file:
16
+ st.download_button(
17
+ label="📥 Download"
18
+ data=file,
19
+ file_name="6_Nicola_Diversity and Inclusion_6.2.2025.pptx",
20
+ mime="application/vnd.openxmlformats-officedocument.presentationml.presentation"
21
+ )