diff --git a/messages/en.json b/messages/en.json index 6999923..db68dbe 100644 --- a/messages/en.json +++ b/messages/en.json @@ -100,7 +100,9 @@ "migrationAppCardTitle": "Cabana Migrations", "migrationAppCardDescription": "An interface to easily migrate funds from older versions of PoolTogether.", "ptlistCardTitle": "PTList", - "ptlistCardDescription": "Quickly generate a vault list from an account's deposits." + "ptlistCardDescription": "Quickly generate a vault list from an account's deposits.", + "superformCardTitle": "Superform", + "superformCardDescription": "Easily save with multiple prize vaults via pooled deposits." }, "Community": { "dipInThePool": "Take a dip in the pool", diff --git a/public/icons/superformIcon.png b/public/icons/superformIcon.png new file mode 100644 index 0000000..2b6d624 Binary files /dev/null and b/public/icons/superformIcon.png differ diff --git a/src/components/Ecosystem/EcosystemCard.tsx b/src/components/Ecosystem/EcosystemCard.tsx index 7a50380..47c9848 100644 --- a/src/components/Ecosystem/EcosystemCard.tsx +++ b/src/components/Ecosystem/EcosystemCard.tsx @@ -20,6 +20,7 @@ export type EcosystemCardType = | 'prizeCalc' | 'migrationApp' | 'ptlist' + | 'superform' interface EcosystemCardProps { type: EcosystemCardType @@ -167,6 +168,14 @@ export const EcosystemCard = (props: EcosystemCardProps) => { author: 'Ncookie & Trmid', tags: ['extensions', 'v5'], description: t('ptlistCardDescription') + }, + superform: { + href: 'https://app.superform.xyz/protocol/pooltogether', + iconSrc: '/icons/superformIcon.png', + title: t('superformCardTitle'), + author: 'Superform', + tags: ['ui', 'v5'], + description: t('superformCardDescription') } } diff --git a/src/components/Ecosystem/MainSection.tsx b/src/components/Ecosystem/MainSection.tsx index ebdf01c..964a9d3 100644 --- a/src/components/Ecosystem/MainSection.tsx +++ b/src/components/Ecosystem/MainSection.tsx @@ -46,7 +46,7 @@ const CardRows = (props: CardRowsProps) => { { href: 'https://migrate.cabana.fi/', iconSrc: '/icons/cabanaIcon.svg', title: t('migrationAppCardTitle') + }, + superform: { + href: 'https://app.superform.xyz/protocol/pooltogether/', + iconSrc: '/icons/superformIcon.png', + title: t('superformCardTitle') } } diff --git a/src/pages/interfaces.tsx b/src/pages/interfaces.tsx index 3cb9981..911030c 100644 --- a/src/pages/interfaces.tsx +++ b/src/pages/interfaces.tsx @@ -29,7 +29,7 @@ export default function InterfacesPage() { className='px-4 py-16 bg-gradient-to-b from-pt-bg-purple-darker to-pt-purple-800' > - + )