Update app.py
Browse files
app.py
CHANGED
|
@@ -30,6 +30,7 @@ def main():
|
|
| 30 |
'>
|
| 31 |
<h3 style="margin-top: 0;">📁 Upload Image</h3>
|
| 32 |
<p>Drag and drop or browse</p>
|
|
|
|
| 33 |
""", unsafe_allow_html=True)
|
| 34 |
|
| 35 |
uploaded_image = st.file_uploader(
|
|
@@ -38,8 +39,6 @@ def main():
|
|
| 38 |
label_visibility="collapsed"
|
| 39 |
)
|
| 40 |
|
| 41 |
-
st.markdown("</div>", unsafe_allow_html=True)
|
| 42 |
-
|
| 43 |
with right:
|
| 44 |
if uploaded_image:
|
| 45 |
with st.spinner("Generating HTML + CSS using Gemini 2.5 Flash..."):
|
|
|
|
| 30 |
'>
|
| 31 |
<h3 style="margin-top: 0;">📁 Upload Image</h3>
|
| 32 |
<p>Drag and drop or browse</p>
|
| 33 |
+
</div>
|
| 34 |
""", unsafe_allow_html=True)
|
| 35 |
|
| 36 |
uploaded_image = st.file_uploader(
|
|
|
|
| 39 |
label_visibility="collapsed"
|
| 40 |
)
|
| 41 |
|
|
|
|
|
|
|
| 42 |
with right:
|
| 43 |
if uploaded_image:
|
| 44 |
with st.spinner("Generating HTML + CSS using Gemini 2.5 Flash..."):
|