Update app.py
Browse files
app.py
CHANGED
@@ -26,13 +26,13 @@ def generate_voice(text, voice_name):
|
|
26 |
|
27 |
|
28 |
badges = """
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
</
|
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 |
|