From 8ac322868ef560caa1313dd5183bac2d707e86fa Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Fri, 30 May 2025 15:52:52 +0200 Subject: [PATCH] Add data structure example --- data.example.js | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 data.example.js diff --git a/data.example.js b/data.example.js new file mode 100644 index 0000000..912d8ff --- /dev/null +++ b/data.example.js @@ -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": "" + } +]