-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio_data.ts
109 lines (102 loc) · 2.56 KB
/
portfolio_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
import { BixatTags, TagType } from "bixat-chip";
import logo from '../assets/logo.png'
export const PortfolioData = {
name: "Mohammed chahboun",
title: "Software Engineer",
avatar: logo,
links: {
github: "https://github.com/M97chahboun",
linkedin: "https://www.linkedin.com/in/m97chahboun/",
x: "https://twitter.com/M97Chahboun",
flutter:
"https://github.com/flutter/flutter/pulls?q=author%3Am97chahboun",
},
techs: [
BixatTags.github,
BixatTags.clickup,
BixatTags.flutter,
BixatTags.django,
BixatTags.fastapi,
BixatTags.angular,
BixatTags.react,
BixatTags.html,
BixatTags.tailwind,
BixatTags.firebase,
],
experiences: [
{
title: "Senior Software Engineer",
company: "Bixat.dev",
duration: "2022 - Now",
type: "Full Time",
logo: logo,
},
{
title: "Senior Software Engineer",
company: "Bixat.dev",
duration: "2022 - Now",
type: "Full Time",
logo: logo,
},
{
title: "Senior Software Engineer",
company: "Bixat.dev",
duration: "2022 - Now",
type: "Full Time",
logo: logo,
},
],
certifications: [
{
name: "Certified Kubernetes Administrator",
issuer: "The Linux Foundation",
date: "2021-08-01",
},
{
name: "AWS Certified Solutions Architect",
issuer: "Amazon Web Services",
date: "2020-05-15",
},
],
education: [
{
degree: "Bachelor of Science in Computer Science",
institution: "University of Example",
year: "2018",
},
{
degree: "Master of Science in Software Engineering",
institution: "University of Example",
year: "2020",
},
],
};
export interface Links {
github: string;
linkedin: string;
x: string;
flutter?: string | null;
}
export interface Experience {
title: string;
company: string;
duration: string;
type?: string;
logo: string;
}
export interface Project {
name: string;
description: string;
technologies: TagType[];
link?: string;
image?: string;
}
export type MemberType = {
name: string;
title: string;
avatar: string;
links: Links;
techs: TagType[];
experiences?: Experience[];
projects?: Project[];
};