/ src / common / data / featured.js
featured.js
 1  import inchBanner from '../assets/images/featured/inch_banner.png'
 2  import inchLogo from '../assets/images/featured/inch_logo.png'
 3  import GitcoinBanner from '../assets/images/featured/gitcoin_banner.png'
 4  import GitcoinLogo from '../assets/images/featured/gitcoin_logo.png'
 5  import MatchaBanner from '../assets/images/featured/matcha_banner.png'
 6  import MatchaLogo from '../assets/images/featured/matcha_logo.png'
 7  
 8  const featuredDapps = [
 9    {
10      name: '1inch.exchange',
11      description:
12        'The most efficient DeFi / DEX aggregator with the best exchange rates accross Ethereum and Binance Smart Chain.',
13      url: 'https://1inch.exchange/',
14      banner: inchBanner,
15      icon: inchLogo,
16    },
17    {
18      name: 'Matcha',
19      description:
20        'Your new favorite DEX aggregator. Find the best prices across exchange networks. Powered by 0x Labs.',
21      url: 'https://matcha.xyz/?utm_source=statusnetwork&utm_medium=dappportal',
22      banner: MatchaBanner,
23      icon: MatchaLogo,
24    },
25    {
26      name: 'Gitcoin Grants',
27      description:
28        'Gitcoin Grants helps creators grow and sustain their open source projects.',
29      url: 'https://gitcoin.co/grants',
30      banner: GitcoinBanner,
31      icon: GitcoinLogo,
32    },
33  ]
34  
35  export default featuredDapps