Skip to content

Commit 1a5560b

Browse files
committed
update
1 parent b05020f commit 1a5560b

3 files changed

Lines changed: 8 additions & 23 deletions

File tree

src/components/helpers/SortableTable.svelte

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
11
<script>
2-
/**
3-
* SortableTable — a reusable, click-to-sort table.
4-
*
5-
* Props
6-
* columns – Array of { key, label, numeric, decimals, colorCode, colorThreshold }
7-
* key: property name in the row objects
8-
* label: displayed header text
9-
* numeric: if true the column is right-aligned & sorted numerically
10-
* decimals: number of decimal places (default 4 for numeric)
11-
* colorCode: if true, color green for >= threshold, red for < threshold
12-
* colorThreshold: threshold for color coding (default 0)
13-
* prefix: string prepended to the formatted value (e.g. "#")
14-
* suffix: string appended to the formatted value (e.g. "x")
15-
* rows – Array of row objects
16-
* initialSortKey – (optional) key to sort by on mount
17-
* initialSortOrder – (optional) 'asc' | 'desc' (default 'asc')
18-
*/
192
export let columns = [];
203
export let rows = [];
214
export let initialSortKey = null;

src/components/layout/Footer.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
.footer-acknowledgements :global(a) {
179179
color: var(--link-color) !important;
180180
text-decoration: none;
181-
font-weight: 500;
181+
font-weight: 200;
182182
}
183183
184184
.footer-acknowledgements :global(a:hover) {

src/components/pages/OverviewPage.svelte

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
<h3>Multi-Workload Tradeoffs</h3>
140140
<p>
141141
Compared to human experts, agents make less favorable
142-
performancecost trade-off decisions.
142+
performance-cost trade-off decisions.
143143
</p>
144144
</div>
145145
</div>
@@ -163,14 +163,15 @@
163163

164164
<section class="section bg-light" id="submitting">
165165
<div class="container">
166-
<h2>Submitting Custom Models</h2>
166+
<h2>Don't see your model? Submit it!</h2>
167167
<p>
168168
To evaluate an agent on FormulaCode, follow the <a
169169
href="https://github.com/formula-code/terminal-bench"
170170
>Installation instructions</a
171171
> and run:
172172
</p>
173-
<pre><code>harbor run -d formulacode@0.1.0.post20251025 -a oracle</code
173+
<pre><code
174+
>$ tb run -d formulacode -a [your-agent-name] -m [your-model-name]</code
174175
></pre>
175176
</div>
176177
</section>
@@ -265,6 +266,7 @@
265266
/* Leaderboard link */
266267
267268
.leaderboard-link {
269+
margin-top: 2rem;
268270
text-align: center;
269271
}
270272
@@ -290,12 +292,12 @@
290292
padding: 1.5rem;
291293
border-radius: 8px;
292294
overflow-x: auto;
293-
border: 1px solid var(--border-secondary);
295+
border: 0.5px solid var(--border-secondary);
294296
}
295297
296298
code {
297299
font-family: var(--mono);
298300
color: var(--text-primary);
299-
font-size: 0.9rem;
301+
font-size: 1rem;
300302
}
301303
</style>

0 commit comments

Comments
 (0)