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 ( + + + + + + + + + + + + + + + + + + + + ); +}