JeCabrera commited on
Commit
5722b78
verified
1 Parent(s): f5d3d30

Upload 11 files

Browse files
Files changed (1) hide show
  1. app.py +33 -13
app.py CHANGED
@@ -106,21 +106,41 @@ if not st.session_state.messages:
106
  # Mostrar la car谩tula inicial con el logo centrado
107
  col1, col2, col3 = st.columns([1, 2, 1])
108
  with col2:
109
- st.image("robocopy_logo.png", width=300)
110
-
111
- st.markdown("""
112
- <div style='text-align: center; padding: 1rem 0; margin-top: -35px;'>
113
- <div style='display: flex; justify-content: center;'>
114
- <h1 class='robocopy-title'>PUV Creator</h1>
 
 
 
 
 
 
 
 
 
 
 
115
  </div>
116
- <div style='display: flex; justify-content: center;'>
117
- <p style='font-size: 16px; color: #4ECDC4;'>By Jes煤s Cabrera</p>
 
 
 
 
118
  </div>
119
- <p style='font-size: 14px; background-color: #101720; padding: 8px; border-radius: 5px; margin-top: 10px; color: #4ECDC4;'>
120
- 馃幆 Experto en crear Propuestas de Valor 脷nicas que convierten audiencia en clientes
121
- </p>
122
- </div>
123
- """, unsafe_allow_html=True)
 
 
 
 
 
124
 
125
  # Mostrar los ejemplos
126
  ejemplos = [
 
106
  # Mostrar la car谩tula inicial con el logo centrado
107
  col1, col2, col3 = st.columns([1, 2, 1])
108
  with col2:
109
+ # Centrar la imagen
110
+ st.markdown("""
111
+ <style>
112
+ div.stImage {
113
+ text-align: center;
114
+ display: block;
115
+ margin-left: auto;
116
+ margin-right: auto;
117
+ }
118
+ </style>
119
+ """, unsafe_allow_html=True)
120
+ st.image("robocopy_logo.png", width=300, use_column_width=True)
121
+
122
+ # T铆tulo
123
+ st.markdown("""
124
+ <div style='text-align: center; margin-top: -35px; width: 100%;'>
125
+ <h1 class='robocopy-title' style='width: 100%; text-align: center;'>PUV Creator</h1>
126
  </div>
127
+ """, unsafe_allow_html=True)
128
+
129
+ # Subt铆tulo
130
+ st.markdown("""
131
+ <div style='text-align: center; width: 100%;'>
132
+ <p style='font-size: 16px; color: #4ECDC4; width: 100%; text-align: center;'>By Jes煤s Cabrera</p>
133
  </div>
134
+ """, unsafe_allow_html=True)
135
+
136
+ # Descripci贸n
137
+ st.markdown("""
138
+ <div style='text-align: center; width: 100%;'>
139
+ <p style='font-size: 14px; background-color: #101720; padding: 8px; border-radius: 5px; margin-top: 10px; color: #4ECDC4; width: 100%; text-align: center;'>
140
+ 馃幆 Experto en crear Propuestas de Valor 脷nicas que convierten audiencia en clientes
141
+ </p>
142
+ </div>
143
+ """, unsafe_allow_html=True)
144
 
145
  # Mostrar los ejemplos
146
  ejemplos = [