Update app.py
Browse files
app.py
CHANGED
@@ -70,12 +70,15 @@ with gr.Blocks(css_paths="app.css") as demo:
|
|
70 |
with antd.Row(gutter=[32, 12]) as layout:
|
71 |
with antd.Col(span=24, md=8):
|
72 |
with antd.Flex(vertical=True, gap="middle", wrap=True):
|
|
|
73 |
header = gr.HTML("""
|
74 |
<div class="left_header">
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
|
|
|
|
79 |
input = antd.InputTextarea(
|
80 |
size="large", allow_clear=True, placeholder="Please enter what kind of application you want")
|
81 |
btn = antd.Button("send", type="primary", size="large")
|
|
|
70 |
with antd.Row(gutter=[32, 12]) as layout:
|
71 |
with antd.Col(span=24, md=8):
|
72 |
with antd.Flex(vertical=True, gap="middle", wrap=True):
|
73 |
+
|
74 |
header = gr.HTML("""
|
75 |
<div class="left_header">
|
76 |
+
<img src="/mouse.gif" width="200px" />
|
77 |
+
<h1>MOUSE Coder: WEB</h2>
|
78 |
+
</div>
|
79 |
+
""")
|
80 |
+
|
81 |
+
|
82 |
input = antd.InputTextarea(
|
83 |
size="large", allow_clear=True, placeholder="Please enter what kind of application you want")
|
84 |
btn = antd.Button("send", type="primary", size="large")
|