80cols commited on
Commit
501521e
·
verified ·
1 Parent(s): 1043a2b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -9
app.py CHANGED
@@ -22,15 +22,20 @@ def key_generated():
22
  demo = gr.Blocks(css=".markdown-body { font-size: 18px; }")
23
 
24
  with demo:
25
-
26
- gr.Markdown(
27
- f"""
28
- <div style="display: flex; justify-content: center; align-items: center;">
29
- <img style="margin-right: 50px;" width=200 src="https://huggingface.co/spaces/Tenefix/private-fhe-fraud-detection/resolve/main/Img/zama.png">
30
- <img width=200 src="https://huggingface.co/spaces/Tenefix/private-fhe-fraud-detection/resolve/main/Img/Epita.png">
31
- </div>
32
- """
33
- )
 
 
 
 
 
34
 
35
 
36
 
 
22
  demo = gr.Blocks(css=".markdown-body { font-size: 18px; }")
23
 
24
  with demo:
25
+ with gr.Row():
26
+ with gr.Column():
27
+ gr.Image("Img/zama.png", width=200, show_label=False)
28
+ with gr.Column():
29
+ gr.Image("Img/Epita.png", width=200, show_label=False)
30
+
31
+ # gr.Markdown(
32
+ # f"""
33
+ # <div style="display: flex; justify-content: center; align-items: center;">
34
+ # <img style="margin-right: 50px;" width=200 src="https://huggingface.co/spaces/Tenefix/private-fhe-fraud-detection/resolve/main/Img/zama.png">
35
+ # <img width=200 src="https://huggingface.co/spaces/Tenefix/private-fhe-fraud-detection/resolve/main/Img/Epita.png">
36
+ # </div>
37
+ # """
38
+ # )
39
 
40
 
41