refactor: delete unused buttons

This commit is contained in:
Mikhail Saveliev 2024-01-06 15:37:55 +05:00
parent c40cf63a6c
commit 857fcfaf24

View file

@ -17,22 +17,7 @@ export const AppNav = () => {
<span className="text-gray-400">.bet</span>
</span>
</a>
<div className="flex flex-row items-center rounded-[100px] bg-[#2D313D]">
<div className="flex flex-row items-center rounded-[100px] border-[2px] border-[#4F5563] bg-[#3B414F] px-[14px] py-[11px] gap-[3px] cursor-pointer">
<GameIcon />
<span>
Gaming
</span>
</div>
<div className="flex flex-row items-center px-[14px] py-[11px] gap-[3px] cursor-not-allowed">
<SportIcon />
<span>Sport</span>
</div>
</div>
<div className="flex flex-row items-center rounded-[100px] bg-[#2D313D] px-[15px] py-[11px] justify-between w-[300px] cursor-not-allowed">
<span className="text-[#959CAF] select-none">Search for games</span>
<SearchIcon />
</div>
<div className="flex flex-row gap-8">
<div className="rounded-[100px] bg-[#2D313D] flex flex-row items-center justify-between shadow-inset">
<div className="flex flex-row gap-[3px] items-center px-[15px] py-[11px]">
<CoinIcon />
@ -54,5 +39,6 @@ export const AppNav = () => {
</div>
</div>
</div>
</div>
);
};