Skip to content

Commit

Permalink
Added logo for Wolverine Trading sponsorship (#49)
Browse files Browse the repository at this point in the history
* Updated Project Exploration Info

* Added Wolverine Trading logo
  • Loading branch information
skunichetty authored Sep 16, 2023
1 parent 4d5fcdc commit 79cc906
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 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
2 changes: 1 addition & 1 deletion config/join.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ In addition, you should post any question on our [Piazza forum](https://piazza.c

Join us on **September 10th, 4:30 - 6:00 PM @ CCCB 2460** to learn about all the projects we will run this semester and directly ask our project leaders any questions you have about the specific project goals and motivations.

This event is optional but highly encouraged.
This event is optional but highly encouraged.

<hr>

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 79cc906

Please sign in to comment.