Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 8 additions & 6 deletions src/pages/HomePage.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
}

.hero-subtitle-short {
font-size: 1.2rem;
font-size: 1.4rem;
font-weight: 500;
line-height: 1.5;
margin-bottom: 1.5rem;
color: rgba(255, 255, 255, 0.9);
padding-right: 4rem;
margin-left: 2rem;
font-weight: 400;
}

.highlight {
Expand Down Expand Up @@ -69,16 +69,16 @@
}

.cta-heading {
font-size: 1.25rem;
font-size: 1.4rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.9);
margin: 0 0 0.5rem 0;
letter-spacing: -0.01em;
}

.cta-description {
font-size: 1.25rem;
color: rgba(255, 255, 255, 0.7);
font-size: 1.35rem;
color: rgba(234, 234, 234, 0.964);
margin: 0 0 1rem 0;
line-height: 1.4;
font-weight: 400;
Expand All @@ -89,7 +89,7 @@
color: white;
font-weight: 500;
padding: 0.5rem 1.25rem;
font-size: 0.8rem;
font-size: 1.1rem;
border: none;
border-radius: 6px;
transition: all 0.2s ease;
Expand Down Expand Up @@ -124,6 +124,7 @@
background: #2563eb;
color: white;
font-weight: 600;
font-size: 1.3rem;
border: none;
}

Expand Down Expand Up @@ -318,6 +319,7 @@
border-radius: 12px;
color: #6b7280;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
min-width: 200px;
Expand Down
13 changes: 9 additions & 4 deletions src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const HomePage: React.FC = () => {
<div className="hero-left">
<h1 className="hero-title">
RouterArena: An Open Platform for
<span className="highlight"> Comprehensive Comparison</span> of LLM Routers
<span className="highlight"> Comprehensive Comparison</span> of <br /> LLM Routers
</h1>

<p className="hero-subtitle-short">
Expand Down Expand Up @@ -64,8 +64,13 @@ const HomePage: React.FC = () => {

<div className="cta-card">
<h3 className="cta-heading">Want to see your router on the leaderboard?</h3>
<p className="cta-description">Head to our GitHub to submit or evaluate your router on RouterArena.</p>
<a href="#contact" className="btn btn-primary">
<p className="cta-description">Head to our GitHub to submit your router.</p>
<a href={contactInfo.github}
target="_blank"
rel="noopener noreferrer"
className="btn btn-primary"

>
Get Started →
</a>
</div>
Expand Down Expand Up @@ -311,7 +316,7 @@ const HomePage: React.FC = () => {
<div className="action-buttons">
<a
href={contactInfo.paper}
className="btn btn-primary"
className="btn btn-outline"
target="_blank"
rel="noopener noreferrer"
>
Expand Down