forked from MarsX-dev/devhunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockproducts.ts
70 lines (68 loc) · 1.79 KB
/
mockproducts.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { IProduct } from './type'
const mockproducts: IProduct[] = [
{
logo: '/images/thirdWeb.jpeg',
name: 'Thirdweb',
title: 'The fastest way to build web3 apps.',
tags: ['Free', 'Developer Tools'],
votes: 530,
slug: '/post/wundergraph',
},
{
logo: '/images/resend.png',
name: 'Resend',
title: 'The best API to reach humans instead of spam folders',
tags: ['Free', 'Developer Tools'],
votes: 521,
slug: '/post/wundergraph',
},
{
logo: '/images/wundergraph.png',
name: 'WunderGraph',
title: 'WunderGraph the next generation Backend For Frontend framework',
tags: ['Free', 'Developer Tools'],
votes: 490,
slug: '/post/wundergraph',
},
{
logo: '/images/lostpixed.png',
name: 'Lost Pixel',
title: 'Visual Testing for Your Frontend',
tags: ['Free', 'Developer Tools'],
votes: 478,
slug: '/post/wundergraph',
},
{
logo: '/images/webstudio.jpeg',
name: 'Webstudio',
title: 'Open visual development for the open web',
tags: ['Free', 'Node Code'],
votes: 470,
slug: '/post/wundergraph',
},
{
logo: '/images/marsx.png',
name: 'Marsx',
title: 'Developer tool that combines AI, NoCode, and ProCode on top of MicroApps',
tags: ['Free', 'No Code'],
votes: 439,
slug: '/post/wundergraph',
},
{
logo: '/images/usermaven.png',
name: 'Usermaven',
title: 'Usermaven helps marketing and product teams turn more visitors into customers',
tags: ['Free', 'Analytics'],
votes: 411,
slug: '/post/wundergraph',
},
{
logo: '/images/floatui.png',
name: 'Float UI',
title: 'Collection of Tailwind UI components and website templates',
tags: ['Free', 'No Code'],
votes: 398,
slug: '/post/wundergraph',
},
]
export default mockproducts