feat: rework entire project structure

This commit is contained in:
2026-03-23 00:04:04 +01:00
parent 6282951b88
commit 8185757933
26 changed files with 1414 additions and 86 deletions

13
app/data/assets.json Normal file
View File

@@ -0,0 +1,13 @@
{
"model": "BASEmodel.glb",
"idle_animation": "idle.glb",
"welcome_animation": "waving.glb",
"animations": [
"StandingW_BriefcaseIdle.glb",
"Acknowledging.glb",
"ArmStretching.glb",
"OffensiveIdle.glb",
"ThoughtfulHeadShake.glb",
"DwarfIdle.glb"
]
}

139
app/data/content.json Normal file
View File

@@ -0,0 +1,139 @@
{
"name": "GUEZO Loïc",
"career": "me.career",
"profile_image": "https://web-bucket.s3.fr-par.scw.cloud/guezoloic.png",
"navbar": {
"buttons": [
{
"label": "about.label",
"action": "about",
"icon": ""
},
{
"label": "skills.label",
"action": "skills",
"icon": "CodeBracketIcon"
},
{
"label": "projects.label",
"action": "projects",
"icon": "ServerIcon"
}
]
},
"about": [
{
"icon": "LightBulbIcon",
"text": "about.content.0"
},
{
"icon": "CodeBracketIcon",
"text": "about.content.1"
},
{
"icon": "CpuChipIcon",
"text": "about.content.2"
},
{
"icon": "PuzzlePieceIcon",
"text": "about.content.3"
},
{
"icon": "Cog6ToothIcon",
"text": "about.content.4"
},
{
"icon": "RocketLaunchIcon",
"text": "about.content.5"
},
{
"icon": "ServerStackIcon",
"text": "about.content.6"
}
],
"skills": [
{
"title": "skills.content.0",
"tags": [
{
"name": "C",
"icon": "SiC"
},
{
"name": "C++",
"icon": "SiCplusplus"
},
{
"name": "Rust",
"icon": "SiRust"
},
{
"name": "Python",
"icon": "SiPython"
},
{
"name": "Java",
"icon": "SiJava"
},
{
"name": "Bash",
"icon": "SiGnubash"
},
{
"name": "HTML/CSS/JS/TS",
"icon": "SiHtml5"
},
{
"name": "React",
"icon": "SiReact"
}
]
},
{
"title": "skills.content.1",
"tags": [
{
"name": "Git",
"icon": "SiGit"
},
{
"name": "Docker",
"icon": "SiDocker"
},
{
"name": "Android Studio",
"icon": "SiAndroid"
}
]
},
{
"title": "skills.content.2",
"tags": [
{
"name": "Linux/Linux Server",
"icon": "SiLinux"
},
{
"name": "Proxmox",
"icon": "SiProxmox"
},
{
"name": "Jetson Nano",
"icon": "SiNvidia"
},
{
"name": "Raspberry Pi",
"icon": "SiRaspberrypi"
},
{
"name": "Arduino",
"icon": "SiArduino"
},
{
"name": "ESP32",
"icon": "SiEspressif"
}
]
}
]
}