Spaces:
Running
Running
Add one-line explainer of match/maps/rounds/chunks above the table
Browse files- src/routes/+page.svelte +9 -1
src/routes/+page.svelte
CHANGED
|
@@ -350,7 +350,7 @@
|
|
| 350 |
<!-- Browser -->
|
| 351 |
<section class="mx-auto mt-8 max-w-5xl">
|
| 352 |
<Tabs.Root bind:value={view} class="w-full">
|
| 353 |
-
<div class="mb-
|
| 354 |
<h2 class="font-heading text-lg font-semibold tracking-tight">Browse the dataset</h2>
|
| 355 |
<Tabs.List>
|
| 356 |
<Tabs.Trigger value="rounds">Rounds</Tabs.Trigger>
|
|
@@ -358,6 +358,14 @@
|
|
| 358 |
<Tabs.Trigger value="matches">Matches</Tabs.Trigger>
|
| 359 |
</Tabs.List>
|
| 360 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 361 |
|
| 362 |
{#if data.matches.length === 0}
|
| 363 |
<div class="space-y-2">
|
|
|
|
| 350 |
<!-- Browser -->
|
| 351 |
<section class="mx-auto mt-8 max-w-5xl">
|
| 352 |
<Tabs.Root bind:value={view} class="w-full">
|
| 353 |
+
<div class="mb-1 flex items-center justify-between gap-2">
|
| 354 |
<h2 class="font-heading text-lg font-semibold tracking-tight">Browse the dataset</h2>
|
| 355 |
<Tabs.List>
|
| 356 |
<Tabs.Trigger value="rounds">Rounds</Tabs.Trigger>
|
|
|
|
| 358 |
<Tabs.Trigger value="matches">Matches</Tabs.Trigger>
|
| 359 |
</Tabs.List>
|
| 360 |
</div>
|
| 361 |
+
<p class="text-muted-foreground mb-3 text-xs">
|
| 362 |
+
A <strong class="text-foreground font-semibold">match</strong> is a best-of-N series
|
| 363 |
+
(usually BO3) of
|
| 364 |
+
<strong class="text-foreground font-semibold">maps</strong>; each map plays up to 24
|
| 365 |
+
<strong class="text-foreground font-semibold">rounds</strong> (MR12 regulation + MR3
|
| 366 |
+
overtime); per player POV every round is sliced into ≤ 1-minute
|
| 367 |
+
<strong class="text-foreground font-semibold">chunks</strong>.
|
| 368 |
+
</p>
|
| 369 |
|
| 370 |
{#if data.matches.length === 0}
|
| 371 |
<div class="space-y-2">
|