Skip to content

Commit

Permalink
Added Wolverine Trading logo
Browse files Browse the repository at this point in the history
  • Loading branch information
skunichetty committed Sep 16, 2023
1 parent 613d0ea commit cf461c6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/sponsorCard.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Link from "next/link";
import Image from "next/image";
import Link from "next/link";
export default function SponsorCard({ type, json, basePath }) {
const style = "relative " + (type === "small" ? "h-28 w-28" : "h-48 w-48");
return (
Expand All @@ -10,7 +10,7 @@ export default function SponsorCard({ type, json, basePath }) {
<Image
className={
"object-contain mx-auto " +
(type === "small" ? "h-28 w-28" : "h-48 w-48")
(type === "small" ? "h-28 w-28" : "glow h-48 w-48")
}
width="500"
height="500"
Expand Down
5 changes: 5 additions & 0 deletions config/sponsors.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
"name": "Rocket Companies",
"link": "https://www.myrocketcareer.com/",
"image": "rocket.png"
},
{
"name": "Wolverine Trading",
"link": "https://www.wolve.com/",
"image": "wolve.png"
}
]
},
Expand Down
Binary file added public/images/sponsors/wolve.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
background: radial-gradient(50% 50% at 50% 50%, #896AE4 0%, rgba(67, 151, 117, 0) 100%), conic-gradient(from 174.92deg at 50% 50%, #3E9644 -56.25deg, #896AE4 27.03deg, #34C5A2 169.15deg, #3E9644 303.75deg, #896AE4 387.03deg);
}

.glow {
filter: drop-shadow(0 0 0.2rem #ffffff21);
}

.link {
grid-template-columns: auto 1fr auto;
}
Expand Down

0 comments on commit cf461c6

Please sign in to comment.