/ src / components / Database / CardsData.js
CardsData.js
 1  import React from 'react';
 2  
 3  const cardsData = [
 4      {
 5          id: 1,
 6          title: 'Offer Card',
 7          keywords: 'offer, cargo, services, product, goods, order',
 8      },
 9      {
10          id: 2,
11          title: 'Notes Card',
12          keywords: 'promisory note, drawdown note, legal',
13      }, 
14      {
15          id: 3,
16          title: 'Identity',
17          keywords: 'identity, merchant, purchase',
18      },
19      {
20          id: 4,
21          title: 'Wallet Card',
22          keywords: 'wallet, token, send, recieve, metamask, transaction',
23      },
24      {
25          id: 5,
26          title: 'Passport Card',
27          keywords: 'passport, verification, business card',
28      },
29      {
30          id: 6,
31          title: 'Payments Card',
32          keywords: 'onramp, offramp, exchange rate, payment',
33      },
34      {
35          id: 7,
36          title: 'WalletReleaseCard',
37          keywords: 'upload wallet, releases, wasm, new wallet, version',
38      },
39  ]
40  
41  export default cardsData;