Skip to content

Commit

Permalink
feat: add coingecko logo image
Browse files Browse the repository at this point in the history
  • Loading branch information
hapetherw committed Jun 6, 2024
1 parent e922102 commit baf0f78
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Binary file added public/assets/partners/coingecko-logo.webp
Binary file not shown.
12 changes: 11 additions & 1 deletion src/components/site/home/HomePartners.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import mexcLogo from "~/assets/partners/mexc.svg";
import bitmartLogo from "~/assets/partners/bitmart.svg";
import uniswapLogo from "~/assets/partners/uniswap.svg";
import dexToolsLogo from "~/assets/partners/dextools_logo.svg";
import coingeckoLogo from "~/assets/partners/coingecko-logo.webp";

const HomePartners: FC = () => {
return (
Expand Down Expand Up @@ -144,13 +145,22 @@ const HomePartners: FC = () => {
</li>
<li>
<Link
href=" https://www.dextools.io/app/en/ether/pair-explorer/0x229d1c1f72be9cbd0998d377b3327a72bdc071f4?t=1717508944051"
href="https://www.dextools.io/app/en/ether/pair-explorer/0x229d1c1f72be9cbd0998d377b3327a72bdc071f4?t=1717508944051"
target="_blank"
className="inline-flex min-h-[60px] items-center justify-center rounded-2xl bg-gradient-radial from-bg/50 to-transparent opacity-80 backdrop-blur-md transition hover:opacity-100"
>
<Image src={dexToolsLogo} alt="DexTools Logo" height={50} />
</Link>
</li>
<li>
<Link
href="https://www.coingecko.com/en/coins/ledgity-token"
target="_blank"
className="inline-flex min-h-[60px] items-center justify-center rounded-2xl bg-gradient-radial from-bg/50 to-transparent opacity-80 backdrop-blur-md transition hover:opacity-100"
>
<Image src={coingeckoLogo} alt="Coingecko Logo" height={50} />
</Link>
</li>
</ul>
</section>
);
Expand Down

0 comments on commit baf0f78

Please sign in to comment.