Skip to content

Commit

Permalink
[ECO-2280] Replace 00 on home page (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBl69 authored Oct 25, 2024
1 parent 343958c commit 71a7ae5
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import planetHome from "../../../../../../public/images/planet-home.png";
import { emojiNamesToPath } from "utils/pathname-helpers";
import { type HomePageProps } from "app/home/HomePage";
import "./module.css";
import { SYMBOL_EMOJI_DATA } from "@sdk/emoji_data";

export interface MainCardProps {
featured?: HomePageProps["featured"];
Expand Down Expand Up @@ -96,7 +97,13 @@ const MainCard = (props: MainCardProps) => {
</Link>

<Column maxWidth="100%" ellipsis>
<div className="pixel-heading-1 text-medium-gray pixel-heading-text">00</div>
<div className="flex flex-row">
<span className="pixel-heading-1 text-medium-gray pixel-heading-text">HOT</span>
<span>&nbsp;</span>
<span className="pixel-heading-2 pixel-heading-text mt-[.2rem]">
{SYMBOL_EMOJI_DATA.byName("fire")?.emoji}
</span>
</div>
<div
className="display-font-text ellipses font-forma-bold"
title={(featured ? featured.market.symbolData.name : "BLACK HEART").toUpperCase()}
Expand Down

0 comments on commit 71a7ae5

Please sign in to comment.