Skip to content

Commit

Permalink
Merge pull request #45 from Luzefiru/nit/change-card-icons
Browse files Browse the repository at this point in the history
nit(icons): Use correct icons
  • Loading branch information
Samuel-Bonghanoy authored Jun 5, 2024
2 parents 2000d5b + 24f9c8b commit 13acab3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
Binary file added public/icons/astrite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/icons/astrites.png
Binary file not shown.
Binary file added public/icons/lustrous-tide.webp
Binary file not shown.
Binary file added public/icons/radiant-tide.webp
Binary file not shown.
12 changes: 8 additions & 4 deletions src/components/convenes/banner-stats-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export function BannerStatsCard({
<div className="flex gap-1">
<h1 className="text-lg">{stats ? stats.totalAstrites : 0}</h1>
<Image
src={"/icons/astrites.png"}
src={"/icons/astrite.png"}
width={30}
height={8}
alt="Astrites"
Expand All @@ -96,9 +96,13 @@ export function BannerStatsCard({
<div className="flex gap-1">
<h1 className="text-lg">{stats ? stats.totalPulls : 0}</h1>
<Image
src={"/icons/special-convene.png"}
width={30}
height={8}
src={
description.includes("Event")
? "/icons/radiant-tide.webp"
: "/icons/lustrous-tide.webp"
}
width={25}
height={7}
alt="Special Convene"
/>
</div>
Expand Down

0 comments on commit 13acab3

Please sign in to comment.