Update app.py
Browse files
app.py
CHANGED
@@ -245,13 +245,19 @@ Usa un estilo claro, formal y coherente.
|
|
245 |
|
246 |
# === Interfaz Gradio ===
|
247 |
with gr.Blocks(css=css_externado) as interfaz:
|
248 |
-
|
249 |
-
|
|
|
250 |
<img src='https://huggingface.co/spaces/km1lo/LEGALFAMI/raw/main/Logo%20externado.jpg' style='height: 60px;'/>
|
251 |
-
<h1 style='color: white; font-family: Roboto, sans-serif;'>LEGALFAMI – Asistente Legal con Razonamiento Jurídico</h1>
|
252 |
</div>
|
253 |
""")
|
254 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
|
256 |
with gr.Row():
|
257 |
with gr.Column():
|
|
|
245 |
|
246 |
# === Interfaz Gradio ===
|
247 |
with gr.Blocks(css=css_externado) as interfaz:
|
248 |
+
# Logo alineado a la izquierda
|
249 |
+
gr.Markdown("""
|
250 |
+
<div style='text-align:left;'>
|
251 |
<img src='https://huggingface.co/spaces/km1lo/LEGALFAMI/raw/main/Logo%20externado.jpg' style='height: 60px;'/>
|
|
|
252 |
</div>
|
253 |
""")
|
254 |
+
|
255 |
+
# Título centrado en blanco
|
256 |
+
gr.Markdown("""
|
257 |
+
<h1 style='color:#FFFFFF; text-align:center; font-family: Roboto, sans-serif;'>
|
258 |
+
LEGALFAMI – Asistente Legal con Razonamiento Jurídico
|
259 |
+
</h1>
|
260 |
+
""")
|
261 |
|
262 |
with gr.Row():
|
263 |
with gr.Column():
|