Skip to content

Commit

Permalink
add mystery box III
Browse files Browse the repository at this point in the history
  • Loading branch information
zkLeonardo committed Jul 23, 2024
1 parent 0e25ae7 commit 7e1059b
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 22 deletions.
60 changes: 45 additions & 15 deletions src/components/Dashboard/MysteryBoxIII.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,38 @@ const Container = styled.div`
z-index: -1;
margin: -1px;
border-radius: inherit; /*important*/
background: linear-gradient(90deg, #48ecae 0%, #3e52fc 52.9%, #49cdd7 100%);
background: linear-gradient(
175deg,
#fb2450,
#fbc82e,
#6eee3f,
#5889f3,
#5095f1,
#b10af4 60%
);
}
`;

const CustomButton = styled(GradientButton)`
border-radius: 8px;
background: var(
--Button-Rainbow,
linear-gradient(
90deg,
#4ba790 0%,
rgba(251, 251, 251, 0.6) 50.31%,
#9747ff 100%
)
);
color: #fff;
text-align: center;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 26px; /* 144.444% */
letter-spacing: 1px;
`;

const TRADEMARK_TOKEN_ID_MAP: Record<number, string> = {
1: "Oak Tree Roots",
2: "Magnifying Glass",
Expand Down Expand Up @@ -234,25 +262,27 @@ export default function MysteryBoxIII() {
return (
<>
{remainDrawCount > 0 && (
<Container className="my-[32px] px-[24px] py-[16px] flex justify-between items-center">
<img
src="/img/img-mystery-box-v2.png"
alt=""
width={56}
height={56}
className="rounded-[12px]"
/>
<div className="text-[18px] font-[700] leading-[26px]">
<p>Mystery Box III</p>
<p className="mt-[4px]">x{remainDrawCount}</p>
<Container className="my-[32px] px-[20px] py-[16px] flex justify-between items-center">
<div className="flex items-center gap-[12px]">
<img
src="/img/img-mystery-box-v2.png"
alt=""
width={56}
height={56}
className="rounded-[12px]"
/>
<div className="text-[18px] font-[700] leading-[26px]">
<p>Mystery Box III</p>
<p className="mt-[4px]">x{remainDrawCount}</p>
</div>
</div>
<div>
<GradientButton
className="px-[56px] py-[15px]"
<CustomButton
className="px-[32px] py-[15px]"
onClick={() => drawModal.onOpen()}
>
Open
</GradientButton>
</CustomButton>
</div>
</Container>
)}
Expand Down
4 changes: 0 additions & 4 deletions src/components/DashboardS2/ZKLClaimAd.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,13 @@ import { useEffect, useState } from "react";
import styled from "styled-components";

const Container = styled.div`
position: fixed;
top: 120px;
right: 32px;
background: #181d20;
color: #fff;
font-family: Satoshi;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
z-index: 999;
transition: all 0.3s;
.progress-bar {
Expand Down
7 changes: 5 additions & 2 deletions src/pages/DashboardS2/index2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import { Tooltip } from "@nextui-org/react";
import { epochList } from "@/constants/epoch";
import PremiusAd from "@/components/DashboardS2/PremiusAd";
import ZKLClaimAd from "@/components/DashboardS2/ZKLClaimAd";
import MysteryBoxIII from "@/components/Dashboard/MysteryBoxIII";
export type TotalTvlItem = {
symbol: string;
tokenAddress: string;
Expand Down Expand Up @@ -597,8 +598,10 @@ export default function Dashboard() {

return (
<Container>
{/* <PremiusAd /> */}
<ZKLClaimAd />
<div className="side fixed right-[32px] top-[120px] z-[999] max-w-[400px]">
<ZKLClaimAd />
<MysteryBoxIII />
</div>
<div className="mt-[29.6px] mx-auto max-w-[1246px] ">
<CardBox2 className="flex justify-between">
<div className="px-[16px] py-[10px]">
Expand Down
1 change: 0 additions & 1 deletion src/styles/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export const GradientButton = styled.span`
font-style: normal;
font-weight: 900;
letter-spacing: 0.125rem;
text-transform: uppercase;
border-radius: 0.5rem;
display: inline-block;
user-select: none;
Expand Down

0 comments on commit 7e1059b

Please sign in to comment.