Compare commits

...

2 commits

Author SHA1 Message Date
TheThomaas 8ac322868e Add data structure example 2025-05-30 15:52:52 +02:00
TheThomaas 2df1ae0e05 Remove background color rule 2025-05-30 15:52:08 +02:00
2 changed files with 36 additions and 1 deletions

36
data.example.js Normal file
View file

@ -0,0 +1,36 @@
const experiences = [
{
"title": "",
"description": "",
"role": "",
"location": "",
"link": "",
"content": [],
"dates": {
"start": 2021,
"end": 2021
}
}
]
const projects = [
{
"title": "",
"description": "",
"content": [],
"links": [
{
"title": "",
"link": "",
"icon": ""
}
]
}
]
const skills = [
{
"title": "",
"description": ""
}
]

View file

@ -1,5 +1,4 @@
footer {
background-color: var(--color-primary-400);
justify-items: center;
margin-block-start: 1.5rem;
}