Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
MCSS-115: Add Hacker Pack (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonytedja authored Feb 13, 2024
1 parent c347fb0 commit c753210
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions components/Dashboard/TileHackerPack/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ type Props = {
const TileHackerPack = (props: Props) => {
const { status } = props

const disabled =
['pending', 'registering', 'applied', 'selected', 'rejected'].includes(status) || 1 === 1 // TODO: remove this line when Hacker Pack is ready
const disabled = ['pending', 'registering', 'applied', 'selected', 'rejected'].includes(status)

return (
<Card
Expand All @@ -25,7 +24,7 @@ const TileHackerPack = (props: Props) => {
{...(!disabled && {
sx: {
backgroundImage:
'radial-gradient(circle closest-corner at 60% 100%, rgb(255 129 24 / 34%), rgba(255, 255, 255, 0)),radial-gradient(circle farthest-side at 75% 16%, rgb(185 104 33 / 10%), rgba(255, 255, 255, 0) 35%),radial-gradient(circle closest-corner at 35% 62%, rgb(168 47 9 / 44%), rgba(255, 255, 255, 0) 76%),radial-gradient(circle farthest-side at 69% 81%, rgba(255, 0, 48, 0.1), rgba(255, 255, 255, 0) 76%),linear-gradient(#202124, #202124)',
'radial-gradient(circle closest-corner at 55% 80%, rgb(255 129 24 / 34%), rgba(255, 255, 255, 0)),radial-gradient(circle farthest-side at 75% 16%, rgb(185 104 33 / 10%), rgba(255, 255, 255, 0) 35%),radial-gradient(circle closest-corner at 35% 62%, rgb(168 47 9 / 44%), rgba(255, 255, 255, 0) 76%),radial-gradient(circle farthest-side at 69% 81%, rgba(255, 0, 48, 0.1), rgba(255, 255, 255, 0) 76%),linear-gradient(#202124, #202124)',
},
})}
>
Expand Down
Binary file added public/hackerpack.pdf
Binary file not shown.

0 comments on commit c753210

Please sign in to comment.