Update app.py
Browse files
app.py
CHANGED
|
@@ -24,7 +24,7 @@ st.markdown("""
|
|
| 24 |
margin-bottom: 3rem;
|
| 25 |
}
|
| 26 |
.stButton button {
|
| 27 |
-
background-color: #
|
| 28 |
color: white;
|
| 29 |
padding: 15px 32px;
|
| 30 |
font-size: 1.2rem;
|
|
@@ -35,7 +35,7 @@ st.markdown("""
|
|
| 35 |
transition: background-color 0.3s ease;
|
| 36 |
}
|
| 37 |
.stButton button:hover {
|
| 38 |
-
background-color: #
|
| 39 |
}
|
| 40 |
.section-title {
|
| 41 |
color: #fff;
|
|
@@ -62,7 +62,7 @@ with col1:
|
|
| 62 |
st.markdown("<div class='section-description'>Transform your ideas into music using AI.</div>", unsafe_allow_html=True)
|
| 63 |
music = st.button("Generate Music")
|
| 64 |
if music:
|
| 65 |
-
st.switch_page("
|
| 66 |
|
| 67 |
|
| 68 |
with col2:
|
|
@@ -70,4 +70,4 @@ with col2:
|
|
| 70 |
st.markdown("<div class='section-description'>Generate stunning images from your text descriptions.</div>", unsafe_allow_html=True)
|
| 71 |
img = st.button("Generate Images")
|
| 72 |
if img:
|
| 73 |
-
st.switch_page("
|
|
|
|
| 24 |
margin-bottom: 3rem;
|
| 25 |
}
|
| 26 |
.stButton button {
|
| 27 |
+
background-color: #780116;
|
| 28 |
color: white;
|
| 29 |
padding: 15px 32px;
|
| 30 |
font-size: 1.2rem;
|
|
|
|
| 35 |
transition: background-color 0.3s ease;
|
| 36 |
}
|
| 37 |
.stButton button:hover {
|
| 38 |
+
background-color: #46494c;
|
| 39 |
}
|
| 40 |
.section-title {
|
| 41 |
color: #fff;
|
|
|
|
| 62 |
st.markdown("<div class='section-description'>Transform your ideas into music using AI.</div>", unsafe_allow_html=True)
|
| 63 |
music = st.button("Generate Music")
|
| 64 |
if music:
|
| 65 |
+
st.switch_page("Music_Generator.py")
|
| 66 |
|
| 67 |
|
| 68 |
with col2:
|
|
|
|
| 70 |
st.markdown("<div class='section-description'>Generate stunning images from your text descriptions.</div>", unsafe_allow_html=True)
|
| 71 |
img = st.button("Generate Images")
|
| 72 |
if img:
|
| 73 |
+
st.switch_page("Image_Generator.py")
|