Spaces:
Running
Running
Make the UI as amazing as you
Browse files
app.py
CHANGED
@@ -524,11 +524,11 @@ if not st.session_state.generation_complete:
|
|
524 |
"Nature", "Shopping", "Nightlife", "Family-friendly"],
|
525 |
default=["Culture", "Food & Dining"])
|
526 |
|
527 |
-
#
|
528 |
-
with st.expander("
|
529 |
-
preferences = st.text_area("
|
530 |
special_requirements = st.text_area("Special Requirements",
|
531 |
-
placeholder="
|
532 |
|
533 |
# Submit button with enhanced styling
|
534 |
submit_button = st.form_submit_button("🚀 Create My Personal Travel Itinerary")
|
@@ -1004,7 +1004,7 @@ st.markdown("""
|
|
1004 |
</div>
|
1005 |
</div>
|
1006 |
<div style="text-align: center; margin-top: 30px;">
|
1007 |
-
<p>©
|
1008 |
</div>
|
1009 |
</div>
|
1010 |
""", unsafe_allow_html=True)
|
|
|
524 |
"Nature", "Shopping", "Nightlife", "Family-friendly"],
|
525 |
default=["Culture", "Food & Dining"])
|
526 |
|
527 |
+
# Simplified expander
|
528 |
+
with st.expander("Additional Preferences", expanded=False):
|
529 |
+
preferences = st.text_area("Interests", placeholder="History museums, local cuisine, hiking, art...")
|
530 |
special_requirements = st.text_area("Special Requirements",
|
531 |
+
placeholder="Dietary restrictions, accessibility needs...")
|
532 |
|
533 |
# Submit button with enhanced styling
|
534 |
submit_button = st.form_submit_button("🚀 Create My Personal Travel Itinerary")
|
|
|
1004 |
</div>
|
1005 |
</div>
|
1006 |
<div style="text-align: center; margin-top: 30px;">
|
1007 |
+
<p>© 2023 BlockX Travel | All rights reserved | Built with ❤️ using Streamlit and Advanced AI</p>
|
1008 |
</div>
|
1009 |
</div>
|
1010 |
""", unsafe_allow_html=True)
|