Rejekts commited on
Commit
6a6e875
1 Parent(s): 0682612

Add application file

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -2,6 +2,9 @@ import gradio as gr
2
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
 
 
 
 
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- iface.launch()
 
2
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
+
6
+ with gr.Blocks(title="🔊",theme=gr.themes.Base(primary_hue="rose",neutral_hue="zinc")) as app:
7
+ with gr.Row():
8
+ gr.HTML("<img src='file/a.png' alt='image'>")
9
 
10
+ app.launch()