forked from Ade-mir/html-css-js-portfolio-tutorial-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
44 lines (43 loc) · 1.42 KB
/
data.json
File metadata and controls
44 lines (43 loc) · 1.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
{
"profile": {
"logo": "John Doe",
"profilePic": "./assets/profile-pic.png",
"name": "John Doe",
"title": "Frontend Developer",
"resumeLink": "./assets/resume-example.pdf",
"linkedinIcon": "./assets/linkedin.png",
"githubIcon": "./assets/github.png",
"linkedinLink": "https://linkedin.com/",
"githubLink": "https://github.com/"
},
"about": {
"aboutPic": "./assets/about-pic.png",
"experience": "2+ years in Frontend Development",
"education": "B.Sc. in Computer Science, M.Sc. in Software Engineering",
"aboutText": "I am a passionate frontend developer skilled in building responsive web applications..."
},
"experience": [
{"skill": "HTML", "level": "Experienced"},
{"skill": "CSS", "level": "Experienced"},
{"skill": "JavaScript", "level": "Intermediate"},
{"skill": "React", "level": "Intermediate"}
],
"projects": [
{
"title": "Project One",
"image": "./assets/project-1.png",
"githubLink": "https://github.com/project1",
"liveDemoLink": "https://project1.com"
},
{
"title": "Project Two",
"image": "./assets/project-2.png",
"githubLink": "https://github.com/project2",
"liveDemoLink": "https://project2.com"
}
],
"contact": {
"email": "examplemail@gmail.com",
"linkedin": "https://www.linkedin.com"
}
}