You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gitprofile.config.ts
+16-97Lines changed: 16 additions & 97 deletions
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,9 @@
2
2
3
3
constCONFIG={
4
4
github: {
5
-
username: 'arifszn',// Your GitHub org/user name. (This is the only required config)
5
+
username: 'il01di',// Your GitHub org/user name. (This is the only required config)
6
6
},
7
-
/**
8
-
* If you are deploying to https://<USERNAME>.github.io/, for example your repository is at https://github.com/arifszn/arifszn.github.io, set base to '/'.
9
-
* If you are deploying to https://<USERNAME>.github.io/<REPO_NAME>/,
10
-
* for example your repository is at https://github.com/arifszn/portfolio, then set base to '/portfolio/'.
11
-
*/
7
+
12
8
base: '/gitprofile/',
13
9
projects: {
14
10
github: {
@@ -25,41 +21,25 @@ const CONFIG = {
25
21
},
26
22
manual: {
27
23
// Properties for manually specifying projects
28
-
projects: ['arifszn/gitprofile','arifszn/pandora'],// List of repository names to display. example: ['arifszn/my-project1', 'arifszn/my-project2']
24
+
projects: [],// List of repository names to display. example: ['arifszn/my-project1', 'arifszn/my-project2']
29
25
},
30
26
},
31
27
external: {
32
28
header: 'My Projects',
33
29
// To hide the `External Projects` section, keep it empty.
34
30
projects: [
35
-
{
36
-
title: 'Project Name',
37
-
description:
38
-
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nunc ut.',
'https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf',// Empty fileUrl will hide the `Download Resume` button.
63
+
'',// Empty fileUrl will hide the `Download Resume` button.
84
64
},
85
65
skills: [
86
-
'PHP',
87
-
'Laravel',
88
66
'JavaScript',
89
-
'React.js',
90
67
'Node.js',
91
-
'Nest.js',
92
-
'MySQL',
93
-
'PostgreSQL',
94
-
'Git',
95
-
'Docker',
96
-
'PHPUnit',
97
68
'CSS',
98
-
'Antd',
99
-
'Tailwind',
100
69
],
101
70
experiences: [
102
-
{
103
-
company: 'Company Name',
104
-
position: 'Position',
105
-
from: 'September 2021',
106
-
to: 'Present',
107
-
companyLink: 'https://example.com',
108
-
},
109
-
{
110
-
company: 'Company Name',
111
-
position: 'Position',
112
-
from: 'July 2019',
113
-
to: 'August 2021',
114
-
companyLink: 'https://example.com',
115
-
},
116
71
],
117
72
certifications: [
118
-
{
119
-
name: 'Lorem ipsum',
120
-
body: 'Lorem ipsum dolor sit amet',
121
-
year: 'March 2022',
122
-
link: 'https://example.com',
123
-
},
124
73
],
125
74
educations: [
126
-
{
127
-
institution: 'Institution Name',
128
-
degree: 'Degree',
129
-
from: '2015',
130
-
to: '2019',
131
-
},
132
-
{
133
-
institution: 'Institution Name',
134
-
degree: 'Degree',
135
-
from: '2012',
136
-
to: '2014',
137
-
},
138
75
],
139
76
publications: [
140
-
{
141
-
title: 'Publication Title',
142
-
conferenceName: '',
143
-
journalName: 'Journal Name',
144
-
authors: 'John Doe, Jane Smith',
145
-
link: 'https://example.com',
146
-
description:
147
-
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.',
148
-
},
149
-
{
150
-
title: 'Publication Title',
151
-
conferenceName: 'Conference Name',
152
-
journalName: '',
153
-
authors: 'John Doe, Jane Smith',
154
-
link: 'https://example.com',
155
-
description:
156
-
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.',
157
-
},
158
77
],
159
78
// Display articles from your medium or dev account. (Optional)
160
79
blog: {
161
-
source: 'dev',// medium | dev
162
-
username: 'arifszn',// to hide blog section, keep it empty
80
+
source: '',// medium | dev
81
+
username: '',// to hide blog section, keep it empty
163
82
limit: 2,// How many articles to display. Max is 10.
164
83
},
165
84
googleAnalytics: {
@@ -175,11 +94,11 @@ const CONFIG = {
175
94
176
95
// Hides the switch in the navbar
177
96
// Useful if you want to support a single color mode
178
-
disableSwitch: false,
97
+
disableSwitch: true,
179
98
180
99
// Should use the prefers-color-scheme media-query,
181
100
// using user system preferences, instead of the hardcoded defaultTheme
0 commit comments