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
4 changes: 3 additions & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from 'react';
import { Link, useLocation } from 'react-router-dom';
import { Menu, X, Trophy, Home, Send, Users, Github } from 'lucide-react';
import { Menu, X, Trophy, Home, Send, Users, Github, FileText} from 'lucide-react';
import './Header.css';
import { contactInfo } from '../data/mockData';

Expand All @@ -17,6 +17,8 @@ const Header: React.FC = () => {
icon: Github,
isExternal: true,
},
// add a paper link
{ name: 'Paper', href: contactInfo.paper, icon: FileText, isExternal: true },
{ name: 'Contact', href: '#contact', icon: Users, isScroll: true },
];

Expand Down
7 changes: 4 additions & 3 deletions src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ 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">Email us or open a GitHub issue on RouterArena.</p>
<p className="cta-description">Head to our GitHub to submit or evaluate your router on RouterArena.</p>
<a href="#contact" className="btn btn-primary">
Get Started →
</a>
Expand Down Expand Up @@ -303,7 +303,8 @@ const HomePage: React.FC = () => {
<div className="container">
<h2 className="section-title">Research Team</h2>
<p className="contact-description">
Contact us or submit a GitHub issue to evaluate your router with RouterArena
To evaluate your router with RouterArena, please visit our GitHub repository and follow the instructions provided in the README.<br />
For inquiries or support, contact us at {contactInfo.email} or submit an issue on GitHub.
</p>

{/* Action Buttons */}
Expand All @@ -324,7 +325,7 @@ const HomePage: React.FC = () => {
rel="noopener noreferrer"
>
<Github className="btn-icon" />
View Code
View GitHub
</a>
</div>

Expand Down