Skip to content

Commit

Permalink
add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
andre15silva committed Sep 19, 2024
1 parent 0b103b0 commit 2275b5c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
Binary file added webpage/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 10 additions & 13 deletions webpage/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,22 @@
}

.App-logo {
height: 40vmin;
pointer-events: none;
height: 50px; /* Adjust the height to make the logo smaller */
margin-right: 10px;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
.App-header {
display: flex;
justify-content: center;
align-items: center;
min-height: 5vh;
color: black;
background-color: transparent; /* Remove the background color */
}

.App-header {
background-color: #282c34;
min-height: 100vh;
.App-header-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}

.App-link {
Expand Down
7 changes: 6 additions & 1 deletion webpage/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ function App() {

return (
<div className="App">
<h1>RepairBench: Live Leaderboard of Frontier LLMs for Program Repair</h1>
<header className="App-header">
<div className="App-header-content">
<img src="/logo.png" alt="logo" className="App-logo" /> {/* Reference the logo in public directory */}
<h1>RepairBench: Live Leaderboard of Frontier LLMs for Program Repair</h1>
</div>
</header>
<LeaderboardTable />
</div>
);
Expand Down

0 comments on commit 2275b5c

Please sign in to comment.