Spaces:
Sleeping
Sleeping
Upload 12 files
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ try:
|
|
82 |
load_css(css_path)
|
83 |
except Exception as e:
|
84 |
print(f"Error al cargar CSS: {e}")
|
85 |
-
st.markdown(
|
86 |
<style>
|
87 |
.robocopy-title {
|
88 |
color: white !important;
|
@@ -91,12 +91,12 @@ except Exception as e:
|
|
91 |
line-height: 1.2;
|
92 |
}
|
93 |
</style>
|
94 |
-
|
95 |
|
96 |
def display_initial_header():
|
97 |
col1, col2, col3 = st.columns([1, 2, 1])
|
98 |
with col2:
|
99 |
-
st.markdown(
|
100 |
<style>
|
101 |
div.stImage {
|
102 |
text-align: center;
|
@@ -105,25 +105,25 @@ def display_initial_header():
|
|
105 |
margin-right: auto;
|
106 |
}
|
107 |
</style>
|
108 |
-
|
109 |
st.image("robocopy_logo.png", width=300, use_container_width=True)
|
110 |
-
st.markdown(
|
111 |
<div style='text-align: center; margin-top: -35px; width: 100%;'>
|
112 |
<h1 class='robocopy-title' style='width: 100%; text-align: center; color: white !important; font-size: clamp(2.5em, 5vw, 4em); line-height: 1.2;'>PUV Creator</h1>
|
113 |
</div>
|
114 |
-
|
115 |
-
st.markdown(
|
116 |
<div style='text-align: center; width: 100%;'>
|
117 |
<p style='font-size: 16px; color: white; width: 100%; text-align: center; margin-top: -20px;'>By Jesús Cabrera</p>
|
118 |
</div>
|
119 |
-
|
120 |
-
st.markdown(
|
121 |
<div style='text-align: center; width: 100%;'>
|
122 |
<p style='font-size: 16px; background-color: transparent; padding: 12px; border-radius: 8px; margin-top: -20px; color: white; width: 100%; text-align: center;'>
|
123 |
🎯 Experto en crear Propuestas de Valor Únicas que convierten audiencia en clientes
|
124 |
</p>
|
125 |
</div>
|
126 |
-
|
127 |
|
128 |
def display_examples():
|
129 |
ejemplos = [
|
|
|
82 |
load_css(css_path)
|
83 |
except Exception as e:
|
84 |
print(f"Error al cargar CSS: {e}")
|
85 |
+
st.markdown("""
|
86 |
<style>
|
87 |
.robocopy-title {
|
88 |
color: white !important;
|
|
|
91 |
line-height: 1.2;
|
92 |
}
|
93 |
</style>
|
94 |
+
""", unsafe_allow_html=True)
|
95 |
|
96 |
def display_initial_header():
|
97 |
col1, col2, col3 = st.columns([1, 2, 1])
|
98 |
with col2:
|
99 |
+
st.markdown("""
|
100 |
<style>
|
101 |
div.stImage {
|
102 |
text-align: center;
|
|
|
105 |
margin-right: auto;
|
106 |
}
|
107 |
</style>
|
108 |
+
""", unsafe_allow_html=True)
|
109 |
st.image("robocopy_logo.png", width=300, use_container_width=True)
|
110 |
+
st.markdown("""
|
111 |
<div style='text-align: center; margin-top: -35px; width: 100%;'>
|
112 |
<h1 class='robocopy-title' style='width: 100%; text-align: center; color: white !important; font-size: clamp(2.5em, 5vw, 4em); line-height: 1.2;'>PUV Creator</h1>
|
113 |
</div>
|
114 |
+
""", unsafe_allow_html=True)
|
115 |
+
st.markdown("""
|
116 |
<div style='text-align: center; width: 100%;'>
|
117 |
<p style='font-size: 16px; color: white; width: 100%; text-align: center; margin-top: -20px;'>By Jesús Cabrera</p>
|
118 |
</div>
|
119 |
+
""", unsafe_allow_html=True)
|
120 |
+
st.markdown("""
|
121 |
<div style='text-align: center; width: 100%;'>
|
122 |
<p style='font-size: 16px; background-color: transparent; padding: 12px; border-radius: 8px; margin-top: -20px; color: white; width: 100%; text-align: center;'>
|
123 |
🎯 Experto en crear Propuestas de Valor Únicas que convierten audiencia en clientes
|
124 |
</p>
|
125 |
</div>
|
126 |
+
""", unsafe_allow_html=True)
|
127 |
|
128 |
def display_examples():
|
129 |
ejemplos = [
|