openfree commited on
Commit
d88dcaa
·
verified ·
1 Parent(s): 88b33ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -3
app.py CHANGED
@@ -96,7 +96,7 @@ body {
96
  """
97
 
98
  with gr.Blocks(css=css) as demo:
99
- # Hero 섹션: gr.HTML 로 변경
100
  gr.HTML(
101
  """
102
  <div id="hero-section">
@@ -106,8 +106,14 @@ with gr.Blocks(css=css) as demo:
106
  """
107
  )
108
 
109
- # 검색 영역
110
  gr.Markdown("### Search & Filter", elem_classes="search-container")
 
 
 
 
 
 
111
  with gr.Group():
112
  search_title = gr.Textbox(label="Search title")
113
  with gr.Row():
@@ -129,7 +135,7 @@ with gr.Blocks(css=css) as demo:
129
  start_date = Calendar(label="Start date", type="datetime", value="2023-05-05")
130
  end_date = Calendar(label="End date", type="datetime")
131
 
132
- # 결과 영역
133
  with gr.Group(elem_id="results-section"):
134
  with gr.Group(elem_classes="card"):
135
  num_papers = gr.Textbox(
 
96
  """
97
 
98
  with gr.Blocks(css=css) as demo:
99
+ # Hero 섹션
100
  gr.HTML(
101
  """
102
  <div id="hero-section">
 
106
  """
107
  )
108
 
109
+ # Search & Filter 헤더 및 외부 링크
110
  gr.Markdown("### Search & Filter", elem_classes="search-container")
111
+ gr.Markdown(
112
+ "[Exp] AI‑Powered Research Impact Predictor ↗](https://huggingface.co/spaces/VIDraft/PapersImpact)",
113
+ elem_classes="search-container"
114
+ )
115
+
116
+ # 검색 입력
117
  with gr.Group():
118
  search_title = gr.Textbox(label="Search title")
119
  with gr.Row():
 
135
  start_date = Calendar(label="Start date", type="datetime", value="2023-05-05")
136
  end_date = Calendar(label="End date", type="datetime")
137
 
138
+ # 결과: 통계 및 테이블
139
  with gr.Group(elem_id="results-section"):
140
  with gr.Group(elem_classes="card"):
141
  num_papers = gr.Textbox(