Add logo
Browse files
app.py
CHANGED
|
@@ -12,9 +12,13 @@ from src import *
|
|
| 12 |
|
| 13 |
|
| 14 |
########################
|
| 15 |
-
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
| 17 |
st.header("A demo of open Text to Speech tools")
|
|
|
|
| 18 |
tts, about = st.tabs(["Text to speech", "**About**"])
|
| 19 |
|
| 20 |
########################
|
|
|
|
| 12 |
|
| 13 |
|
| 14 |
########################
|
| 15 |
+
col1, col2 = st.columns([20,3])
|
| 16 |
+
with col2:
|
| 17 |
+
st.image('logo.png', use_column_width=True)
|
| 18 |
+
with col1:
|
| 19 |
+
st.title("Mockingbird")
|
| 20 |
st.header("A demo of open Text to Speech tools")
|
| 21 |
+
|
| 22 |
tts, about = st.tabs(["Text to speech", "**About**"])
|
| 23 |
|
| 24 |
########################
|