TomLii commited on
Commit
d47d133
·
1 Parent(s): dd903d9

Replace header with QUEST project logo

Browse files
Files changed (2) hide show
  1. app.py +31 -10
  2. assets/quest-logo.png +0 -0
app.py CHANGED
@@ -67,24 +67,40 @@ CUSTOM_CSS = """
67
  }
68
 
69
  .banner-card {
70
- padding: 22px 24px;
71
  border-radius: 18px;
72
- background: linear-gradient(100deg, #1d4ed8 0%, #4338ca 45%, #6d28d9 100%);
73
- color: #ffffff;
74
- box-shadow: 0 10px 30px rgba(37, 56, 138, 0.22);
 
75
  margin-bottom: 14px;
76
  }
77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  .banner-title {
79
- font-size: 28px;
80
  font-weight: 700;
81
  line-height: 1.15;
 
82
  }
83
 
84
  .banner-subtitle {
85
- margin-top: 8px;
86
- opacity: 0.95;
87
  font-size: 14px;
 
88
  }
89
 
90
  .section-card {
@@ -399,9 +415,14 @@ with gr.Blocks(
399
  gr.HTML(
400
  """
401
  <div class="banner-card">
402
- <div class="banner-title">DeepResearch Space Starter</div>
403
- <div class="banner-subtitle">
404
- Multi-turn research agent with search + visit tools. Start with free models now, switch to your own model later.
 
 
 
 
 
405
  </div>
406
  </div>
407
  """
 
67
  }
68
 
69
  .banner-card {
70
+ padding: 18px 20px;
71
  border-radius: 18px;
72
+ background: linear-gradient(100deg, #f8fbff 0%, #eef5ff 100%);
73
+ color: #0f172a;
74
+ border: 1px solid #dbe7ff;
75
+ box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
76
  margin-bottom: 14px;
77
  }
78
 
79
+ .banner-inner {
80
+ display: flex;
81
+ align-items: center;
82
+ gap: 18px;
83
+ }
84
+
85
+ .banner-logo {
86
+ width: 240px;
87
+ max-width: 40vw;
88
+ border-radius: 10px;
89
+ background: #ffffff;
90
+ }
91
+
92
  .banner-title {
93
+ font-size: 24px;
94
  font-weight: 700;
95
  line-height: 1.15;
96
+ color: #1e3a8a;
97
  }
98
 
99
  .banner-subtitle {
100
+ margin-top: 6px;
101
+ opacity: 0.9;
102
  font-size: 14px;
103
+ color: #1f2937;
104
  }
105
 
106
  .section-card {
 
415
  gr.HTML(
416
  """
417
  <div class="banner-card">
418
+ <div class="banner-inner">
419
+ <img class="banner-logo" src="/file=assets/quest-logo.png" alt="QUEST logo" />
420
+ <div>
421
+ <div class="banner-title">QUEST Deep Research Agent</div>
422
+ <div class="banner-subtitle">
423
+ Multi-turn research agent with search + visit tools. Start with free models now, switch to your own model later.
424
+ </div>
425
+ </div>
426
  </div>
427
  </div>
428
  """
assets/quest-logo.png ADDED