-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.ts
182 lines (175 loc) · 4.16 KB
/
data.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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
import { IconType } from "react-icons";
import { MdWeb, MdGTranslate } from 'react-icons/md';
import { AiOutlineDatabase, AiFillCode } from 'react-icons/ai'
import { CgIfDesign } from 'react-icons/cg'
import { FiType,FiFramer } from 'react-icons/fi'
import { IoCubeOutline,IoLogoCss3,IoLogoNodejs,IoLogoPython } from 'react-icons/io5'
import {SiJavascript,SiTailwindcss,SiTypescript,SiMatrix,SiReact,SiAdobeillustrator,SiAdobephotoshop,SiFigma,SiMicrosoftoffice,
SiNextdotjs,SiChakraui,SiBootstrap,SiMaterialui,SiFirebase,SiMongodb} from 'react-icons/si'
import {TiHtml5} from 'react-icons/ti'
export interface Idata {
title: string;
about: string;
icon: IconType;
}
export interface Ibar {
name: string;
level: string;
type: string;
Icon: IconType;
}
export const data: Idata[] = [
{
title: 'Front-end Dev',
about: ' I build beautiful websites and web applications using <b> HTML </b>, <b> CSS </b>, <b> JavaScript </b>, <b> React js</b>.',
icon: MdWeb
},
{
title: 'Back-end Dev',
about: ' I handle database, server and api using <b> Node js </b>, <b> Next js </b> ,<b> Mongo db </b>, <b> Fire base</b>. ',
icon: AiOutlineDatabase
},
{
title: 'UI&UX Designer',
about: ' Aware of Ux rules and use them to make the user experience more comfortable. ',
icon: CgIfDesign
},
{
title: 'Problem solver',
about: ' I write functions to solve specific proplems from scratch. ',
icon: AiFillCode
},
{
title: 'Solid Designer ',
about: ' I can create solid designs and assemblies using <b> Solid Works </b>.',
icon: IoCubeOutline
},
{
title: 'Typist',
about: ' I write content, reports and official documents. I am familiar with <b> Word </b> , <b> Exel </b> and <b>Powerpoint</b>. ',
icon: FiType
},
{
title: 'Translator',
about: ' I am fluent at both Arabic and English, I can translate any piece of work to any of those langauges.',
icon: MdGTranslate
},
]
export const bar: Ibar[] = [
{
name: 'JavaScript',
level: '96',
type: 'PL',
Icon: SiJavascript,
},
{
name: 'HTML5',
level: '95',
type: 'PL',
Icon: TiHtml5,
},
{
name: 'CSS',
level: '90',
type: 'PL',
Icon: IoLogoCss3,
},
{
name: 'Node js',
level: '75',
type: 'PL',
Icon: IoLogoNodejs,
},
{
name: 'TypeScript',
level: '60',
type: 'PL',
Icon: SiTypescript,
},
{
name: 'Python',
level: '50',
type: 'PL',
Icon: IoLogoPython,
},
{
name: 'Matlab',
level: '20',
type: 'PL',
Icon: SiMatrix,
},
{
name: 'React',
level: '90',
type: 'FW',
Icon: SiReact,
},
{
name: 'Next',
level: '85',
type: 'FW',
Icon: SiNextdotjs,
},
{
name: 'Tailwind css',
level: '95',
type: 'L',
Icon: SiTailwindcss,
},
{
name: 'Chakra UI',
level: '90',
type: 'L',
Icon: SiChakraui,
},
{
name: 'Bootstrap',
level: '90',
type: 'L',
Icon: SiBootstrap,
},
{
name: 'Framer M',
level: '80',
type: 'L',
Icon: FiFramer,
},
{
name: 'Materialui',
level: '80',
type: 'L',
Icon: SiMaterialui,
},
{
name: 'Firebase',
level: '90',
type: 'DB',
Icon: SiFirebase,
},
{
name: 'Mongo db',
level: '70',
type: 'DB',
Icon: SiMongodb,
},{
name: 'Illustrator',
level: '80',
type: 'T',
Icon: SiAdobeillustrator,
},{
name: 'Photoshop',
level:'50',
type: 'T',
Icon: SiAdobephotoshop,
},{
name: 'Figma',
level: '50',
type: 'T',
Icon: SiFigma,
},{
name: 'MO',
level: '50',
type: 'T',
Icon: SiMicrosoftoffice,
},
]