-
Notifications
You must be signed in to change notification settings - Fork 8
/
mockData.js
132 lines (129 loc) · 4.23 KB
/
mockData.js
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import chakara from "./src/assets/images/Project Logos/chakra.png";
import chaoss from "./src/assets/images/Project Logos/chaoss.png";
import osca from "./src/assets/images/Project Logos/os.png";
import igboapi from "./src/assets/images/Project Logos/igboapi.png";
import spaceyatech from "./src/assets/images/Project Logos/spaceyatech.png";
import windui from "./src/assets/images/Project Logos/windui.png";
export const projectCardsData = [
{
id: "id-01",
title: "Chakra UI",
image: chakara,
category: "UI Library",
description:
"Chakra UI is a simple, modular and accessible component library that gives you the building blocks you need to build your React applications.",
project_link: "https://chakra-ui.com/",
country: "Nigeria",
},
{
id: "id-02",
title: "CHAOSS Africa",
image: chaoss,
category: "Community",
description:
"A chapter of the CHAOSS Project focusing on creating initiatives and metrics around solving challenges of Open Source Communities in Africa.",
project_link: "https://chaoss.community/",
country: "Nigeria",
},
{
id: "id-03",
title: "OSCA - Open Source Community Africa",
image: osca,
category: "Community",
description:
"A community of creative minds driving the Open Source movement in Africa.",
project_link: "https://oscafrica.org/",
country: "Nigeria",
},
{
id: "id-04",
title: "Igbo API",
image: igboapi,
category: "API",
description:
"Access thousands of Igbo words, audio pronunciations, and example sentences to power the future of Igbo technology.",
project_link: "https://igboapi.com/",
country: "Nigeria",
},
{
id: "id-05",
title: "SpaceYaTech",
image: spaceyatech,
category: "Community",
description:
"SpaceYaTech is the fastest growing African Open-Source Community Looking To Change The Way Young Africans Get Started In Technology.",
project_link: "https://github.com/SpaceyaTech",
country: "Nigeria",
},
{
id: "id-06",
title: "Windi UI",
image: windui,
category: "UI Library",
description:
"Beautiful and professionally crafted Windi UI components and templates.",
project_link: "https://github.com/selemondev/windi-ui",
country: "Nigeria",
},
{
id: "id-07",
title: "Demo Project 1",
image:
"https://images.pexels.com/photos/319968/pexels-photo-319968.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2",
category: "Robotics",
description: "Get Started In Robotics.",
project_link: "https://github.com/",
country: "Kenya",
},
{
id: "id-08",
title: "Demo Project 2",
image:
"https://images.pexels.com/photos/8849295/pexels-photo-8849295.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2",
category: "Artificial Intelligence",
description: "Get Started In Artificial Intelligence.",
project_link: "https://github.com/",
country: "Ghana",
},
{
id: "id-09",
title: "Demo Project 3",
image:
"https://images.pexels.com/photos/1476321/pexels-photo-1476321.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2",
category: "Hardware",
description: "Get Started In Hardware.",
project_link: "https://github.com/",
country: "Kenya",
},
{
id: "id-10",
title: "Demo Project 4",
image:
"https://images.pexels.com/photos/26804169/pexels-photo-26804169/free-photo-of-white-dog-robot.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2",
category: "Artificial Intelligence",
description: "Get Started In Artificial Intelligence.",
project_link: "https://github.com/",
country: "Uganda",
},
];
export const categories = [
{ name: "API", count: 1 },
{ name: "UI Library", count: 2 },
{ name: "Community", count: 2 },
{ name: "Robotics", count: 1 },
{ name: "Artificial Intelligence", count: 2 },
{ name: "Hardware", count: 1 },
{ name: "Agriculture", count: 0 },
{ name: "eCommerce", count: 0 },
];
export const countries = [
{ name: "Ghana", count: 1 },
{ name: "Nigeria", count: 6 },
{ name: "Angola", count: 0 },
{ name: "Tanzania", count: 0 },
{ name: "Benin", count: 0 },
{ name: "Congo", count: 0 },
{ name: "Tunisia", count: 0 },
{ name: "Kenya", count: 2 },
{ name: "Uganda", count: 1 },
];