Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -88,3 +88,34 @@ with tab2:
|
|
88 |
st.audio(voice_output_path)
|
89 |
else:
|
90 |
st.warning("Upload your voice clone first in the sidebar.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
st.audio(voice_output_path)
|
89 |
else:
|
90 |
st.warning("Upload your voice clone first in the sidebar.")
|
91 |
+
# Footer section with bold text
|
92 |
+
st.markdown("""
|
93 |
+
<style>
|
94 |
+
.footer {
|
95 |
+
position: absolute;
|
96 |
+
bottom: 0;
|
97 |
+
width: 100%;
|
98 |
+
text-align: center;
|
99 |
+
padding: 10px;
|
100 |
+
font-weight: bold;
|
101 |
+
}
|
102 |
+
</style>
|
103 |
+
<div class="footer">
|
104 |
+
DESIGN BY MERAJ GRAPHICS
|
105 |
+
</div>
|
106 |
+
""", unsafe_allow_html=True)# Footer section with bold text
|
107 |
+
st.markdown("""
|
108 |
+
<style>
|
109 |
+
.footer {
|
110 |
+
position: absolute;
|
111 |
+
bottom: 0;
|
112 |
+
width: 100%;
|
113 |
+
text-align: center;
|
114 |
+
padding: 10px;
|
115 |
+
font-weight: bold;
|
116 |
+
}
|
117 |
+
</style>
|
118 |
+
<div class="footer">
|
119 |
+
DESIGN BY MERAJ GRAPHICS
|
120 |
+
</div>
|
121 |
+
""", unsafe_allow_html=True)
|