forked from arifszn/gitprofile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitprofile.config.ts
263 lines (254 loc) · 9.03 KB
/
gitprofile.config.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
// gitprofile.config.ts
const CONFIG = {
github: {
username: 'jonas4climate', // Your GitHub org/user name. (This is the only required config)
},
/**
* 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 '/'.
* If you are deploying to https://<USERNAME>.github.io/<REPO_NAME>/,
* for example your repository is at https://github.com/arifszn/portfolio, then set base to '/portfolio/'.
*/
base: '/',
projects: {
github: {
display: true, // Display GitHub projects?
header: 'GitHub Software Projects',
mode: 'manual', // Mode can be: 'automatic' or 'manual'
automatic: {
sortBy: 'stars', // Sort projects by 'stars' or 'updated'
limit: 6, // How many projects to display.
exclude: {
forks: false, // Forked projects will not be displayed if set to true.
projects: [], // These projects will not be displayed. example: ['arifszn/my-project1', 'arifszn/my-project2']
},
},
manual: {
// Properties for manually specifying projects
projects: [
'jonas4climate/modelling-natural-processes',
'jonas4climate/opinion-formation-complexity',
'jonas4climate/metabolic-cellular-modelling',
'jonas4climate/honeybee-colony-abm',
],
},
},
external: {
header: 'Climate Projects',
// To hide the `External Projects` section, keep it empty.
projects: [
{
title: 'Climate Education Talk @ European Parliament, Brussels',
description: 'As one of four selected youth in the EU, I received public speaking coaching and the opportunity to speak about the intersection of climate education & democracy in the EU parliament as part of the Level Up! conference.',
imageUrl: 'https://raw.githubusercontent.com/jonas4climate/jonas4climate.github.io/main/files/youth_talk.jpg',
link: 'https://audiovisual.ec.europa.eu/en/video/I-235549',
},
{
title: 'Event Coordination @ COP26, Glasgow',
description:
'I coordinated the annual final ceremony of the ClimateScience Olympiad as a volunteer at ClimateScience, a leading climate education charity. The event was held in the Green Zone of the global conference of parties (COP26) in Glasgow, UK.',
imageUrl:
'https://raw.githubusercontent.com/jonas4climate/jonas4climate.github.io/main/files/cop26.jpg',
link: 'https://unfccc.int/process-and-meetings/the-paris-agreement/the-glasgow-climate-pact-key-outcomes-from-cop26',
},
{
title: 'Climate Education Advocacy @ SB56, Bonn',
description:
'I attended the SB56 climate change conference in Bonn to network, establish partnerships and expand free climate education access as a volunteer at ClimateScience, a leading climate education charity.',
imageUrl:
'https://raw.githubusercontent.com/jonas4climate/jonas4climate.github.io/main/files/sb56.jpg',
link: 'https://unfccc.int/SB56',
},
],
},
},
seo: {
title: 'Portfolio of Jonas Schäfer',
description: 'Computational Science student @ University of Amsterdam with a passion for tech and sustainability.',
imageURL: '',
},
social: {
linkedin: 'jonas-schaefer',
// twitter: '',
// mastodon: '',
// researchGate: '',
// facebook: '',
// instagram: '',
// reddit: '',
// threads: '',
// youtube: '', // example: 'pewdiepie'
// udemy: '',
// dribbble: '',
// behance: '',
// medium: '',
// dev: '',
// stackoverflow: '', // example: '1/jeff-atwood'
// skype: '',
// telegram: 'jonas_cs',
website: 'https://jonas4climate.github.io',
// phone: '',
email: 'jonas(dot)schaefer00(at)gmail(dot)com',
},
resume: {
fileUrl:
'https://raw.githubusercontent.com/jonas4climate/cv/main/CV.pdf', // Empty fileUrl will hide the `Download Resume` button.
},
skills: [
'Energy System Modelling & Simulation',
'Scientific Computing',
'Traditional Machine Learning',
'Deep Learning',
'Uncertainty Quantification',
'Stochastic Modelling',
],
experiences: [
{
company: 'Forschungszentrum Jülich, ICE-1',
position: 'Master Thesis Student',
from: 'November 2024',
to: 'April 2024',
companyLink: 'https://www.fz-juelich.de/en/ice/ice-1',
},
{
company: 'proWIN Winter GmbH',
position: 'Sustainability Intern',
from: 'March 2023',
to: 'September 2023',
companyLink: 'https://prowin.net',
},
{
company: 'ClimateScience',
position: 'Head of Human Resources (Volunteer)',
from: 'June 2022',
to: 'March 2023',
companyLink: 'https://climatescience.org',
},
{
company: 'ClimateScience',
position: 'Web Developer & EU Partnerships (Volunteer)',
from: 'December 2019',
to: 'June 2022',
companyLink: 'https://climatescience.org',
},
],
certifications: [
{
name: 'European (Climate) Policy Workshop',
body: 'European Horizons',
year: 'December 2022',
link: 'https://raw.githubusercontent.com/jonas4climate/jonas4climate.github.io/main/files/EH_certificate.pdf',
},
],
educations: [
{
institution: 'University of Amsterdam & Vrije University',
degree: 'M.Sc. Computational Science (joint)',
from: 'September 2023',
to: 'July 2025',
},
{
institution: 'University of Birmingham',
degree: 'B.Sc. (Hons) Computer Science',
from: 'September 2018',
to: 'June 2021',
},
],
// publications: [
// {
// title: 'Publication Title',
// conferenceName: '',
// journalName: 'Journal Name',
// authors: 'John Doe, Jane Smith',
// link: 'https://example.com',
// description:
// '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.',
// },
// {
// title: 'Publication Title',
// conferenceName: 'Conference Name',
// journalName: '',
// authors: 'John Doe, Jane Smith',
// link: 'https://example.com',
// description:
// '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.',
// },
// ],
// Display articles from your medium or dev account. (Optional)
// blog: {
// source: 'dev', // medium | dev
// username: 'arifszn', // to hide blog section, keep it empty
// limit: 2, // How many articles to display. Max is 10.
// },
googleAnalytics: {
id: '', // GA3 tracking id/GA4 tag id UA-XXXXXXXXX-X | G-XXXXXXXXXX
},
// Track visitor interaction and behavior. https://www.hotjar.com
hotjar: {
id: '5007095',
snippetVersion: 6,
},
themeConfig: {
defaultTheme: 'lofi',
// Hides the switch in the navbar
// Useful if you want to support a single color mode
disableSwitch: false,
// Should use the prefers-color-scheme media-query,
// using user system preferences, instead of the hardcoded defaultTheme
respectPrefersColorScheme: false,
// Display the ring in Profile picture
displayAvatarRing: true,
// Available themes. To remove any theme, exclude from here.
themes: [
'light',
'dark',
'cupcake',
'bumblebee',
'emerald',
'corporate',
'synthwave',
'retro',
'cyberpunk',
'valentine',
'halloween',
'garden',
'forest',
'aqua',
'lofi',
'pastel',
'fantasy',
'wireframe',
'black',
'luxury',
'dracula',
'cmyk',
'autumn',
'business',
'acid',
'lemonade',
'night',
'coffee',
'winter',
'dim',
'nord',
'sunset',
'procyon',
],
// Custom theme, applied to `procyon` theme
customTheme: {
primary: '#fc055b',
secondary: '#219aaf',
accent: '#e8d03a',
neutral: '#2A2730',
'base-100': '#E3E3ED',
'--rounded-box': '3rem',
'--rounded-btn': '3rem',
},
},
// Optional Footer. Supports plain text or HTML.
footer: `Made with <a
class="text-primary" href="https://github.com/arifszn/gitprofile"
target="_blank"
rel="noreferrer"
>GitProfile</a> and ❤️`,
enablePWA: true,
};
export default CONFIG;