Commit ·
ee5614e
1
Parent(s): feab1e0
Add epitomic banner above search and graph image before statistics
Browse files
frontend/src/components/datasets/protein/ProteinDashboard.tsx
CHANGED
|
@@ -344,6 +344,13 @@ export function ProteinDashboard() {
|
|
| 344 |
</p>
|
| 345 |
</section>
|
| 346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 347 |
{/* Search Panel Full Width */}
|
| 348 |
<section className="border border-gray-200 rounded-2xl p-6 bg-white shadow-sm hover:border-slate-900 hover:shadow-lg hover:-translate-y-0.5 transition-all duration-300">
|
| 349 |
<FilterPanel
|
|
@@ -363,6 +370,13 @@ export function ProteinDashboard() {
|
|
| 363 |
/>
|
| 364 |
</section>
|
| 365 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 366 |
{/* Default Dataset Summary View */}
|
| 367 |
<section className="border border-gray-200 rounded-2xl p-6 bg-white shadow-sm hover:border-slate-900 hover:shadow-lg hover:-translate-y-0.5 transition-all duration-300">
|
| 368 |
<StatsPanel />
|
|
|
|
| 344 |
</p>
|
| 345 |
</section>
|
| 346 |
|
| 347 |
+
{/* Banner image above the search box — no title, no frame */}
|
| 348 |
+
<img
|
| 349 |
+
src="/api/protein/plots/epitomic.png?v=20260622"
|
| 350 |
+
alt=""
|
| 351 |
+
style={{ width: '100%', height: 'auto', display: 'block' }}
|
| 352 |
+
/>
|
| 353 |
+
|
| 354 |
{/* Search Panel Full Width */}
|
| 355 |
<section className="border border-gray-200 rounded-2xl p-6 bg-white shadow-sm hover:border-slate-900 hover:shadow-lg hover:-translate-y-0.5 transition-all duration-300">
|
| 356 |
<FilterPanel
|
|
|
|
| 370 |
/>
|
| 371 |
</section>
|
| 372 |
|
| 373 |
+
{/* Graph image between search box and statistics — no title, no frame */}
|
| 374 |
+
<img
|
| 375 |
+
src="/api/protein/plots/graph.png?v=20260622"
|
| 376 |
+
alt=""
|
| 377 |
+
style={{ width: '100%', height: 'auto', display: 'block' }}
|
| 378 |
+
/>
|
| 379 |
+
|
| 380 |
{/* Default Dataset Summary View */}
|
| 381 |
<section className="border border-gray-200 rounded-2xl p-6 bg-white shadow-sm hover:border-slate-900 hover:shadow-lg hover:-translate-y-0.5 transition-all duration-300">
|
| 382 |
<StatsPanel />
|