aidn commited on
Commit
14180c1
·
verified ·
1 Parent(s): dd90011

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -7
app.py CHANGED
@@ -152,15 +152,24 @@ v_theme = gr.themes.Soft(
152
 
153
  with gr.Blocks() as demo:
154
 
155
- gr.Image(
156
- value="banner.png",
157
- show_label=False,
158
- interactive=False,
159
- container=False
160
- )
 
 
 
 
 
 
 
 
 
 
161
 
162
  gr.HTML("<div style='text-align: center; margin-bottom: 2rem;'><p style='color: #4B5563; font-size: 1.1rem;'>AI-Driven Multi-Agent Consensus System</p></div>")
163
-
164
 
165
  with gr.Row():
166
  with gr.Column(scale=4):
 
152
 
153
  with gr.Blocks() as demo:
154
 
155
+ with gr.Row():
156
+ with gr.Column(scale=1):
157
+ pass # Leerer Platzhalter links
158
+ with gr.Column(scale=2):
159
+ # Banner zentriert und klein
160
+ gr.Image(
161
+ value="banner.png",
162
+ show_label=False,
163
+ interactive=False,
164
+ container=False,
165
+ height=100, # ← Kleinere Höhe (versuch 80-150)
166
+ width=300, # ← Fixe Breite oder "auto"
167
+ elem_classes="centered-banner"
168
+ )
169
+ with gr.Column(scale=1):
170
+ pass # Leerer Platzhalter rechts
171
 
172
  gr.HTML("<div style='text-align: center; margin-bottom: 2rem;'><p style='color: #4B5563; font-size: 1.1rem;'>AI-Driven Multi-Agent Consensus System</p></div>")
 
173
 
174
  with gr.Row():
175
  with gr.Column(scale=4):