-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.ts
127 lines (123 loc) · 2.66 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
import { IconType } from "react-icons";
import {
AiFillApi,
AiFillBook,
AiFillCloud,
AiFillMobile,
} from "react-icons/ai";
import { RiAddCircleFill, RiComputerFill } from "react-icons/ri";
import { IProject, ISkill, IService } from "./types";
export const services: IService[] = [
{
Icon: RiComputerFill,
title: "Frontend",
about: "HTML, CSS, SASS, Responsive-design, React, TailwindCSS",
},
{
Icon: AiFillApi,
title: "Backend",
about: "JavaScript, Node.js, PHP, Laravel",
},
{
Icon: AiFillMobile,
title: "Mobile development",
about: "React-native, Flutter",
},
{
Icon: AiFillCloud,
title: "Cloud-native development",
about: "AWS, CI/CD, Docker, Kubernetes",
},
{
Icon: AiFillBook,
title: "Technical-content Writer",
about: "I mostly write articles on Dev.to",
},
];
export const languages: ISkill[] = [
{
name: "HTML/CSS",
level: "90%",
Icon: RiAddCircleFill,
},
{
name: "JavaScript",
level: "70%",
Icon: RiAddCircleFill,
},
{
name: "TailwindCSS",
level: "50%",
Icon: RiAddCircleFill,
},
{
name: "React",
level: "65%",
Icon: RiAddCircleFill,
},
{
name: "React-native",
level: "50%",
Icon: RiAddCircleFill,
},
{
name: "Flutter",
level: "50%",
Icon: RiAddCircleFill,
},
];
export const tools: ISkill[] = [
{
name: "VS-Code",
level: "90%",
Icon: RiAddCircleFill,
},
{
name: "Git & GitHub",
level: "70%",
Icon: RiAddCircleFill,
},
{
name: "Linux",
level: "60%",
Icon: RiAddCircleFill,
},
{
name: "Slack",
level: "55%",
Icon: RiAddCircleFill,
},
{
name: "Docker",
level: "55%",
Icon: RiAddCircleFill,
},
{
name: "Kubernetes",
level: "50%",
Icon: RiAddCircleFill,
},
];
export const projects: IProject[] = [
{
id: 1,
name: "Mern-House",
description:
"A production-ready Web-application that helps people rent houses",
image_path: "/images/mern-house.png",
deployed_url: "",
github_url: "https://github.com/SyedUmairAli2000/Mern-House",
category: ["React", "MongoDB", "Node"],
tech: ["React", "Ant-Design", "GraphQL", "TypeScript"],
},
{
id: 2,
name: "React-Gatsby Header",
description: "A modern react header component ",
image_path: "/images/reactheader.png",
deployed_url: "https://react-gatsby-header.netlify.app/",
github_url: "https://gitlab.com/SyedUmairAli2000/reactheader",
category: ["React"],
tech: ["React", "Gatsby"],
},
];