KRayRay commited on
Commit
8292deb
·
verified ·
1 Parent(s): 809f828

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -0
app.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+
5
+ with gr.Row():
6
+ with gr.Column():
7
+ gr.Markdown("# This is Ray's profile page")
8
+ gr.Image("banner.jpg")
9
+
10
+ with gr.Column():
11
+ gr.Markdown("# This is Ray's profile page")
12
+ gr.Image("banner.jpg")
13
+
14
+ gr.Markdown("# This is Ray's profile page")
15
+ gr.Image("banner.jpg")
16
+
17
+ demo.launch()