From 4565ce9b91c8279ee575b105a7fda35d5db1503c Mon Sep 17 00:00:00 2001 From: Daniil Polienko Date: Wed, 24 Jul 2024 16:10:18 +0300 Subject: [PATCH] feat: add gimme app --- src/components/YearnApps.tsx | 7 +++ src/icons/LogoGimme.tsx | 95 ++++++++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+) create mode 100644 src/icons/LogoGimme.tsx diff --git a/src/components/YearnApps.tsx b/src/components/YearnApps.tsx index 0a9b9731..2533e6f6 100644 --- a/src/components/YearnApps.tsx +++ b/src/components/YearnApps.tsx @@ -1,3 +1,4 @@ +import {LogoGimme} from '../icons/LogoGimme'; import {LogoJuiced} from '../icons/LogoJuiced'; import {LogoYearn} from '../icons/LogoYearn'; import {VEYFI_DYFI_ADDRESS, YCRV_TOKEN_ADDRESS} from '../utils/constants'; @@ -22,6 +23,12 @@ export const APPS = { host: 'juiced.yearn.fi', icon: }, + Gimme: { + name: 'GIMME', + href: 'https://gimme.mom', + host: 'gimme.mom', + icon: + }, Vaults: { name: 'Vaults', href: 'https://yearn.fi/vaults', diff --git a/src/icons/LogoGimme.tsx b/src/icons/LogoGimme.tsx new file mode 100644 index 00000000..066670fd --- /dev/null +++ b/src/icons/LogoGimme.tsx @@ -0,0 +1,95 @@ +import type {ReactElement} from 'react'; + +export function LogoGimme(props: React.SVGProps & {back?: string; front?: string}): ReactElement { + return ( + + + + + + + + + + + + + + + + + + + + ); +}