Update app.py
Browse files
app.py
CHANGED
@@ -763,21 +763,23 @@ with gr.Blocks(css_paths="app.css",theme=theme) as demo:
|
|
763 |
execute_btn = antd.Button("Code μ€ν", type="default", size="large")
|
764 |
clear_btn = antd.Button("Clear", type="default", size="large")
|
765 |
|
766 |
-
# ν
νλ¦Ώ λ²νΌλ€μ μν μλ‘μ΄ Flex 컨ν
μ΄λ
|
767 |
with antd.Flex(gap="small", justify="space-between"):
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
with antd.Col(span=24, md=16):
|
774 |
with ms.Div(elem_classes="right_panel"):
|
775 |
with antd.Flex(gap="small", elem_classes="setting-buttons"):
|
776 |
codeBtn = antd.Button("π§βπ» μ½λ 보기", type="default")
|
777 |
historyBtn = antd.Button("π νμ€ν 리", type="default")
|
778 |
-
|
|
|
|
|
779 |
|
780 |
gr.HTML('<div class="render_header"><span class="header_btn"></span><span class="header_btn"></span><span class="header_btn"></span></div>')
|
|
|
781 |
with antd.Tabs(active_key="empty", render_tab_bar="() => null") as state_tab:
|
782 |
with antd.Tabs.Item(key="empty"):
|
783 |
empty = antd.Empty(description="empty input", elem_classes="right_content")
|
|
|
763 |
execute_btn = antd.Button("Code μ€ν", type="default", size="large")
|
764 |
clear_btn = antd.Button("Clear", type="default", size="large")
|
765 |
|
|
|
766 |
with antd.Flex(gap="small", justify="space-between"):
|
767 |
+
btn = antd.Button("Send", type="primary", size="large")
|
768 |
+
execute_btn = antd.Button("Code μ€ν", type="default", size="large")
|
769 |
+
clear_btn = antd.Button("Clear", type="default", size="large")
|
770 |
+
|
771 |
+
# μ°μΈ‘ ν¨λ λΆλΆμ λ€μκ³Ό κ°μ΄ μμ
|
772 |
with antd.Col(span=24, md=16):
|
773 |
with ms.Div(elem_classes="right_panel"):
|
774 |
with antd.Flex(gap="small", elem_classes="setting-buttons"):
|
775 |
codeBtn = antd.Button("π§βπ» μ½λ 보기", type="default")
|
776 |
historyBtn = antd.Button("π νμ€ν 리", type="default")
|
777 |
+
best_btn = antd.Button("π λ² μ€νΈ ν
νλ¦Ώ", type="default")
|
778 |
+
trending_btn = antd.Button("π₯ νΈλ λ© ν
νλ¦Ώ", type="default")
|
779 |
+
new_btn = antd.Button("β¨ NEW ν
νλ¦Ώ", type="default")
|
780 |
|
781 |
gr.HTML('<div class="render_header"><span class="header_btn"></span><span class="header_btn"></span><span class="header_btn"></span></div>')
|
782 |
+
|
783 |
with antd.Tabs(active_key="empty", render_tab_bar="() => null") as state_tab:
|
784 |
with antd.Tabs.Item(key="empty"):
|
785 |
empty = antd.Empty(description="empty input", elem_classes="right_content")
|