tsi-org commited on
Commit
0584b7c
·
1 Parent(s): cbbd8a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -26,13 +26,13 @@ def generate_voice(text, voice_name):
26
 
27
 
28
  badges = """
29
- <div style="display: flex; justify-content: space-between; align-items: center; background-color: #f5f5f5; padding: 10px;">
30
- <span>🎵 AI Tutor Text to Voice</span>
31
- <div>
32
- <a href="#" style="margin-right: 15px;">Home</a>
33
- <a href="#" style="margin-right: 15px;">About</a>
34
- <a href="#">Contact</a>
35
- </div>
36
  </div>
37
  """
38
 
@@ -43,6 +43,7 @@ Welcome to AI Tutor Text to Voice, single foundational model supporting 28 langu
43
 
44
  with gr.Blocks() as block:
45
  gr.Markdown('')
 
46
  gr.Markdown(badges)
47
  gr.Markdown(description)
48
 
 
26
 
27
 
28
  badges = """
29
+
30
+ """
31
+ menu = """
32
+ <div style="display: flex; justify-content: space-between; align-items: center; background-color: #f4f4f4; padding: 10px;">
33
+ 🎵 <span style="margin-right: 15px;"><a href="#">Item 1</a></span>
34
+ <span style="margin-right: 15px;"><a href="#">Item 2</a></span>
35
+ <span><a href="#">Item 3</a></span>
36
  </div>
37
  """
38
 
 
43
 
44
  with gr.Blocks() as block:
45
  gr.Markdown('')
46
+ gr.Markdown(menu) # Added the menu here
47
  gr.Markdown(badges)
48
  gr.Markdown(description)
49