-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (59 loc) · 2.54 KB
/
Copy pathindex.html
File metadata and controls
59 lines (59 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quarry Benchmarks</title>
<style>
:root {
--bg: #f5f5f5;
--text: #24292e;
--text-muted: #586069;
--card-bg: #ffffff;
--border: #e1e4e8;
--link: #0366d6;
--link-glow: rgba(3,102,214,0.1);
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #0d1117;
--text: #e6edf3;
--text-muted: #8b949e;
--card-bg: #161b22;
--border: #30363d;
--link: #58a6ff;
--link-glow: rgba(88,166,255,0.15);
}
}
* { box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; max-width: 760px; margin: 0 auto; padding: 4rem 2rem; color: var(--text); background: var(--bg); min-height: 100vh; }
h1 { font-size: 2.25rem; margin: 0 0 0.5rem; }
.subtitle { color: var(--text-muted); font-size: 1.1rem; margin: 0 0 2.5rem; }
.links { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.link-card { display: block; padding: 1.5rem; background: var(--card-bg); border-radius: 8px; text-decoration: none; color: inherit; border: 1px solid var(--border); transition: all 0.15s; }
.link-card:hover { border-color: var(--link); box-shadow: 0 4px 12px var(--link-glow); transform: translateY(-1px); }
.link-card h2 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--link); }
.link-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }
.footer a { color: var(--link); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
</style>
</head>
<body>
<h1>Quarry Benchmarks</h1>
<p class="subtitle">Performance tracking for the Quarry SQL builder</p>
<div class="links">
<a class="link-card" href="dev/bench/">
<h2>Trend Dashboard →</h2>
<p>Time-series charts showing Quarry benchmark performance across commits. Click any data point to open that commit's full report.</p>
</a>
<a class="link-card" href="dev/bench/runs/">
<h2>Run History →</h2>
<p>Browse all per-commit benchmark reports with full statistics, including baselines from Raw, EF, Dapper, and SqlKata.</p>
</a>
</div>
<div class="footer">
Source: <a href="https://github.com/Dtronix/Quarry">github.com/Dtronix/Quarry</a>
</div>
</body>
</html>