charchits commited on
Commit
5af78b4
·
1 Parent(s): bdd97cf

added column

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -64,11 +64,10 @@ st.set_page_config(
64
  )
65
 
66
  def main():
67
- st.title("Text to Music Generation")
 
 
68
 
69
- with st.expander("View Details..."):
70
-
71
- st.write("This was built by https://github.com/ishan-kshirsagar0-7 using Meta's Audiocraft library. Enter the description of the music you want to generate, and set the duration with the slider given below. The longer the duration slider, the longer it will take to generate the music.")
72
 
73
  text_area = st.text_area("Enter your description...")
74
  time_slider = st.slider("Select time duration (in seconds)", 2, 20, 5)
 
64
  )
65
 
66
  def main():
67
+ c1, c2 = st.columns(2)
68
+ c2.st.title("Zonic: Music Generator")
69
+ c1.st.image('/static/media/picture-of-abstract-music.jpg', caption='Modern & Abstract Muisc Generation', width='50%')
70
 
 
 
 
71
 
72
  text_area = st.text_area("Enter your description...")
73
  time_slider = st.slider("Select time duration (in seconds)", 2, 20, 5)