-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
manual merge + sidebar update + sort. vis. started
- Loading branch information
ruizdiasmatt
committed
Nov 21, 2023
1 parent
195f4b5
commit 744d388
Showing
19 changed files
with
12,248 additions
and
7,601 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.HomeLogo { | ||
width: 176px; | ||
height: 99px; | ||
border-radius: 20rem; | ||
margin: 1rem 1.5rem; | ||
background-color: #1a1a5b; | ||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React from "react"; | ||
import "./Logo.css"; | ||
import { Link } from "react-router-dom"; | ||
|
||
function Logo() { | ||
return ( | ||
<> | ||
<Link to="/home"> | ||
<img | ||
src={"images/algoverse-Logo.png"} | ||
alt="Logo" | ||
className={"HomeLogo"} | ||
/> | ||
</Link> | ||
</> | ||
); | ||
} | ||
|
||
export default Logo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.