JeCabrera commited on
Commit
d94dd19
·
verified ·
1 Parent(s): 536b0c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
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.title('🚀 Great Offer Generator')
38
- st.markdown('''### Transform your skills into compelling offers!''')
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('### 📝 Oferta Generada')
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