simonraj commited on
Commit
c406197
1 Parent(s): a898e01

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -73,10 +73,15 @@ iface = gr.Interface(
73
  gr.inputs.Audio(source="microphone", type="filepath") # Audio input
74
  ],
75
  outputs=gr.inputs.Textbox(), # Using inputs.Textbox as an output to make it editable
76
- description=f'{img_html}<br><br><a href="https://forms.moe.edu.sg/forms/J0lmkJ" target="_blank">Click here to provide feedback on the initial prototype of the Oral Coach</a>',
 
 
 
 
 
 
77
  css="custom.css" # Link to the custom CSS file
78
  )
79
 
80
  iface.queue(max_size=99, concurrency_count=40).launch(debug=True)
81
 
82
-
 
73
  gr.inputs.Audio(source="microphone", type="filepath") # Audio input
74
  ],
75
  outputs=gr.inputs.Textbox(), # Using inputs.Textbox as an output to make it editable
76
+ description=img_html + '''
77
+ <div style="text-align: center; font-size: medium;">
78
+ <a href="https://forms.moe.edu.sg/forms/J0lmkJ" target="_blank">
79
+ 📝 Click here to provide feedback on the initial prototype of the Oral Coach 📝
80
+ </a>
81
+ </div>
82
+ ''', # Added feedback link, centralized with medium font size and emoticons
83
  css="custom.css" # Link to the custom CSS file
84
  )
85
 
86
  iface.queue(max_size=99, concurrency_count=40).launch(debug=True)
87