MirakramAghalarov commited on
Commit
7ef4e3c
·
1 Parent(s): e421f2a

added invisible space

Browse files
Files changed (1) hide show
  1. app.py +11 -4
app.py CHANGED
@@ -359,22 +359,29 @@ with demo:
359
  gr.Markdown(LLM_DATASET_TEXT, elem_classes="markdown-text")
360
  gr.HTML("""<h1 align="center" id="space-title"> Contributor Companies and Teams </h1>""")
361
  with gr.Row():
362
- gr.Image('src/display/localdocs.jpeg', width = 100, height = 100,
 
363
  show_label=False,
364
  interactive=False,
365
  show_share_button=False,
366
  show_download_button=False)
367
- gr.Image('src/display/prodata.png', width = 100, height = 100,
 
 
 
368
  show_label=False,
369
  interactive=False,
370
  show_share_button=False,
371
  show_download_button=False)
372
- gr.Image('src/display/bhosai.jpeg', width = 100, height = 100,
 
 
 
373
  show_label=False,
374
  interactive=False,
375
  show_share_button=False,
376
  show_download_button=False)
377
-
378
  scheduler = BackgroundScheduler()
379
  scheduler.add_job(restart_space, "interval", seconds=300)
380
  scheduler.start()
 
359
  gr.Markdown(LLM_DATASET_TEXT, elem_classes="markdown-text")
360
  gr.HTML("""<h1 align="center" id="space-title"> Contributor Companies and Teams </h1>""")
361
  with gr.Row():
362
+ with gr.Column(scale=1, elem_classes="center-column"):
363
+ gr.Image('src/display/localdocs.jpeg', width = 200, height = 200,
364
  show_label=False,
365
  interactive=False,
366
  show_share_button=False,
367
  show_download_button=False)
368
+ with gr.Column(scale=1, elem_classes="center-column"):
369
+ gr.Markdown(""" """, elem_classes="markdown-text")
370
+ with gr.Column(scale=1, elem_classes="center-column"):
371
+ gr.Image('src/display/prodata.png', width = 200, height = 200,
372
  show_label=False,
373
  interactive=False,
374
  show_share_button=False,
375
  show_download_button=False)
376
+ with gr.Column(scale=1, elem_classes="center-column"):
377
+ gr.Markdown(""" """, elem_classes="markdown-text")
378
+ with gr.Column(scale=1, elem_classes="center-column"):
379
+ gr.Image('src/display/bhosai.jpeg', width = 200, height = 200,
380
  show_label=False,
381
  interactive=False,
382
  show_share_button=False,
383
  show_download_button=False)
384
+
385
  scheduler = BackgroundScheduler()
386
  scheduler.add_job(restart_space, "interval", seconds=300)
387
  scheduler.start()