feat: add crypto category

This commit is contained in:
Roberth González
2023-10-29 11:57:04 +00:00
parent 79209b57e1
commit 45e6b075d8
12 changed files with 82 additions and 1 deletions
+71 -1
View File
@@ -1428,5 +1428,75 @@ export const svgs: iSVG[] = [
category: 'Software',
route: '/library/typesense.svg',
url: 'https://typesense.org/'
}
},
{
id: 205,
title: 'Bitcoin',
category: 'Crypto',
route: '/library/btc.svg',
url: 'https://bitcoin.org/'
},
{
id: 206,
title: 'Ethereum',
category: 'Crypto',
route: '/library/eth.svg',
url: 'https://ethereum.org/'
},
{
id: 207,
title: 'Solana',
category: 'Crypto',
route: '/library/sol.svg',
url: 'https://solana.com/'
},
{
id: 208,
title: 'Dogecoin',
category: 'Crypto',
route: '/library/doge.svg',
url: 'https://dogecoin.com/'
},
{
id: 209,
title: 'XRP',
category: 'Crypto',
route: '/library/xrp.svg',
url: 'https://xrpl.org/'
},
{
id: 210,
title: 'BNB',
category: 'Crypto',
route: '/library/bnb.svg',
url: 'https://www.bnbchain.org/'
},
{
id: 211,
title: 'Cardano',
category: 'Crypto',
route: '/library/ada.svg',
url: 'https://cardano.org/'
},
{
id: 212,
title: 'TRON',
category: 'Crypto',
route: '/library/trx.svg',
url: 'https://tron.network/'
},
{
id: 213,
title: 'Chainlink',
category: 'Crypto',
route: '/library/link.svg',
url: 'https://chain.link/'
},
{
id: 214,
title: 'Polygon',
category: 'Crypto',
route: '/library/matic.svg',
url: 'https://polygon.technology/'
},
];
+1
View File
@@ -8,6 +8,7 @@ export type tCategory =
| 'CMS'
| 'Database'
| 'Compiler'
| 'Crypto'
| 'Social'
| 'Entertainment'
| 'Browser'