Skip to content
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1a9bcb3
Added link to paper in nav bar
shenrunzhang Nov 5, 2025
48992c8
updated instructions for submitting to just go to project page and fo…
shenrunzhang Nov 10, 2025
98fabee
Made text on hero section lighter, rephrased cta button 'get started'…
shenrunzhang Nov 10, 2025
3dbff83
Made subtitles one liner
shenrunzhang Nov 10, 2025
e869bd1
Added logo and rescaled 0-100
shenrunzhang Nov 10, 2025
ae04aad
fixed metrics range, and dangling word
shenrunzhang Nov 10, 2025
b18f37f
Changed commercial/academic -> closed/open source. Added Chayan to le…
shenrunzhang Nov 18, 2025
ee68aaf
Fixed col width
shenrunzhang Nov 18, 2025
501520f
changed vllm affiliation to vllm sr team
shenrunzhang Nov 18, 2025
a9c0292
Fixed premature scrollbar on loaderboard
shenrunzhang Nov 18, 2025
9d1024f
added text wrapping to leaderboard affiliations
shenrunzhang Nov 18, 2025
7633325
Added two new metrics accuracy and cost/1k query
shenrunzhang Nov 18, 2025
111258a
Added eval metric explanation
shenrunzhang Nov 18, 2025
2229a48
spelling
shenrunzhang Nov 18, 2025
76628a1
Added website links to all routers and removed dangling word from lea…
shenrunzhang Nov 19, 2025
a85815c
Added beta slider
shenrunzhang Nov 20, 2025
307c9c0
Fixed sizing for mobile screens in homepage and leaderboard page and …
shenrunzhang Nov 20, 2025
05640f2
Fixed homepage padding for phone screens
shenrunzhang Nov 20, 2025
db8b60b
changed get started button color
shenrunzhang Nov 20, 2025
71c1d03
Fixed beta slider
shenrunzhang Nov 20, 2025
4e98b10
changed get started button color
shenrunzhang Nov 21, 2025
319892e
Merge branch 'main' into feature/dynamic-beta
shenrunzhang Nov 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/pages/HomePage.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,19 +92,19 @@

.cta-card .btn {
/* background: linear-gradient(135deg, #fa961c 0%, #ffaa00 100%); */
background: rgb(108, 112, 119);
background: #e3aa19;
color: white;
font-weight: 500;
padding: 0.5rem 1.25rem;
font-size: 1.1rem;
border: 2px solid #4d4d4dd6;
/* border: 2px solid #4d4d4dd6; */
border-radius: 6px;
transition: all 0.2s ease;
letter-spacing: 0.01em;
}

.cta-card .btn:hover {
background: #555555d6;
background: #d89b00;
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}
Expand Down