Skip to content

Commit

Permalink
add nft category to solutions & move NFT drop from tokens category (#…
Browse files Browse the repository at this point in the history
…1417)

* add nft category to solutions, move NFT drop from tokens category

* fix typo
  • Loading branch information
FBalint authored Jul 29, 2024
1 parent b961068 commit 412e241
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
2 changes: 2 additions & 0 deletions src/solutions/components/SolutionsPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import {
categories,
engagement,
memberships,
nft,
sybil,
tokens,
} from "solutions"
Expand Down Expand Up @@ -77,6 +78,7 @@ const SolutionsPanel = ({
sybil: sybil.filter(
(solution) => showPolygonId || solution.handlerParam !== "POLYGON_ID"
),
nft,
tokens,
}

Expand Down
23 changes: 15 additions & 8 deletions src/solutions/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ export const categories = [
label: "Memberships",
value: "memberships",
},
{
label: "NFTs",
value: "nft",
},
{
label: "Tokens",
value: "tokens",
Expand Down Expand Up @@ -77,6 +81,17 @@ export const memberships: SolutionCardData[] = [
]

export const tokens: SolutionCardData[] = [
{
title: "Token liquidity program",
description: "Reward users with points for providing liquidity to your token",
imageUrl: "/solutions/liquidity.png",
bgImageUrl: "/solutions/liquidity-bg.jpg",
handlerType: "solution",
handlerParam: "LIQUIDITY",
},
]

export const nft: SolutionCardData[] = [
{
title: "NFT Drop",
description:
Expand All @@ -86,14 +101,6 @@ export const tokens: SolutionCardData[] = [
handlerType: "reward",
handlerParam: "CONTRACT_CALL",
},
{
title: "Token liquidity program",
description: "Reward users with points for providing liquidity to your token",
imageUrl: "/solutions/liquidity.png",
bgImageUrl: "/solutions/liquidity-bg.jpg",
handlerType: "solution",
handlerParam: "LIQUIDITY",
},
]

export const engagement: SolutionCardData[] = [
Expand Down

0 comments on commit 412e241

Please sign in to comment.