Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,9 +33,9 @@ header {visibility: hidden;}
|
|
33 |
# Custom CSS
|
34 |
st.markdown(get_custom_css(), unsafe_allow_html=True)
|
35 |
|
36 |
-
# App title and description
|
37 |
-
st.
|
38 |
-
st.markdown('
|
39 |
|
40 |
# Create two columns for layout - left column 40%, right column 60%
|
41 |
col1, col2 = st.columns([4, 6])
|
@@ -106,8 +106,8 @@ with col2:
|
|
106 |
response = model.generate_content(prompt, generation_config=generation_config)
|
107 |
st.session_state.offer_result = response.text
|
108 |
|
109 |
-
# Display result
|
110 |
-
st.markdown('###
|
111 |
st.markdown(st.session_state.offer_result)
|
112 |
|
113 |
# Add download button below the result with 80% width
|
|
|
33 |
# Custom CSS
|
34 |
st.markdown(get_custom_css(), unsafe_allow_html=True)
|
35 |
|
36 |
+
# App title and description - centered and without emoji
|
37 |
+
st.markdown('<h1 style="text-align: center;">Great Offer Generator</h1>', unsafe_allow_html=True)
|
38 |
+
st.markdown('<h3 style="text-align: center;">Transform your skills into compelling offers!</h3>', unsafe_allow_html=True)
|
39 |
|
40 |
# Create two columns for layout - left column 40%, right column 60%
|
41 |
col1, col2 = st.columns([4, 6])
|
|
|
106 |
response = model.generate_content(prompt, generation_config=generation_config)
|
107 |
st.session_state.offer_result = response.text
|
108 |
|
109 |
+
# Display result - without emoji
|
110 |
+
st.markdown('### Oferta Generada')
|
111 |
st.markdown(st.session_state.offer_result)
|
112 |
|
113 |
# Add download button below the result with 80% width
|