-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
68 lines (68 loc) · 2.42 KB
/
Copy pathdata.js
File metadata and controls
68 lines (68 loc) · 2.42 KB
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
const cvData = {
ar: {
labels: {
summary: "الملخص المهني",
skills: "المهارات",
education: "التعليم",
experience: "الخبرات العملية",
languages: "اللغات"
},
personal: {
name: "محمد [اسمك الكامل]",
title: "أخصائي تقنية معلومات",
location: "جدة، السعودية",
email: "you@example.com",
phone: "+966-5X-XXX-XXXX",
github: "https://github.com/your-username",
linkedin: "https://www.linkedin.com/in/your-username"
},
summary: "متخصص في تقنية المعلومات أسعى لتطوير حلول مبتكرة وتحسين البنية التحتية التقنية.",
skills: [
{ label: "أنظمة التشغيل", items: ["Linux", "Windows", "macOS"] },
{ label: "الشبكات", items: ["TCP/IP", "VLAN", "VPN", "Firewall"] }
],
education: [
{ degree: "بكالوريوس علوم الحاسب", institution: "جامعة [الاسم]", year: "2020" }
],
experience: [
{ company: "شركة [اسم]", role: "مهندس نظم وشبكات", period: "2022 — الآن" }
],
languages: [
{ name: "العربية", level: "اللغة الأم" },
{ name: "الإنجليزية", level: "ممتاز" }
]
},
en: {
labels: {
summary: "Professional Summary",
skills: "Skills",
education: "Education",
experience: "Experience",
languages: "Languages"
},
personal: {
name: "Mohammed [Full Name]",
title: "IT Specialist",
location: "Jeddah, Saudi Arabia",
email: "you@example.com",
phone: "+966-5X-XXX-XXXX",
github: "https://github.com/your-username",
linkedin: "https://www.linkedin.com/in/your-username"
},
summary: "IT professional focused on innovative solutions and infrastructure optimization.",
skills: [
{ label: "Operating Systems", items: ["Linux", "Windows", "macOS"] },
{ label: "Networking", items: ["TCP/IP", "VLAN", "VPN", "Firewall"] }
],
education: [
{ degree: "B.Sc. Computer Science", institution: "[University Name]", year: "2020" }
],
experience: [
{ company: "[Company Name]", role: "Systems & Network Engineer", period: "2022 — Present" }
],
languages: [
{ name: "Arabic", level: "Native" },
{ name: "English", level: "Excellent" }
]
}
};