From 8e4f01b213bc3baf30df3f70703933b07f9ce458 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Thu, 6 Aug 2026 18:33:32 +0200 Subject: [PATCH] feat(content): portfolio content --- frontend/src/content/portfolio.json | 95 +++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 frontend/src/content/portfolio.json diff --git a/frontend/src/content/portfolio.json b/frontend/src/content/portfolio.json new file mode 100644 index 0000000..abbbbf0 --- /dev/null +++ b/frontend/src/content/portfolio.json @@ -0,0 +1,95 @@ +{ + "profile": { + "name": "AramJonghu", + "headline": "Software Engineer", + "region": "", + "location": "The Netherlands", + "summary": "I am third year software engineering student. I have primarily done full-stack web development, but my interest has grown towards backend services. Languages like Zig interest me with their vision on how code can be written.\n\nRead the about section on the home page. I write about my motivation, interest, how to contact me and I answer some notable questions.\n", + "links": [ + { + "label": "Forgejo", + "svg": "forgejo", + "url": "https://git.aramjonghu.dev/AramJonghu" + }, + { + "label": "Gitea", + "svg": "gitea", + "url": "https://git.zach-dev.cc/AramJonghu" + } + ] + }, + "experience": [ + { + "role": "Backend Developer", + "company": "HANflex", + "companyUrl": "https://www.han.nl/over-de-han/werken-bij-de-han/andere-inzetvormen-bij-de-han/", + "start": "2026-03", + "end": "present", + "current": true, + "highlights": [ + "Learnt basic python and typedb", + "Learning Rust as potential replacement of some python codebases" + ] + } + ], + "education": [ + { + "degree": "IT - Software Engineer (Bachelor)", + "school": "HAN University of Applied Sciences", + "schoolUrl": "https://han.nl", + "start": "2023", + "end": "expected 2028", + "current": true, + "highlights": [ + "Java OOP", + "PHP Security", + "JavaScript/React Frontend Webdev", + "Java Backend Webdev" + ] + } + ], + "skills": [ + { + "category": "Languages", + "items": ["JavaScript", "TypeScript", "Java"] + }, + { + "category": "Tools", + "items": [ + "Linux", + "Git", + "React", + "Neovim", + "Docker", + "CI/CD", + "Nginx" + ] + }, + { "category": "Learning", "items": ["Zig", "Rust", "Jujutsu"] } + ], + "languages": [ + { "name": "English", "proficiency": "Fluent" }, + { "name": "Dutch", "proficiency": "Native" }, + { "name": "Armenian", "proficiency": "Basic conversational" } + ], + "projects": [ + { + "name": "aramjonghu-site", + "url": "https://git.aramjonghu.dev/AramJonghu/aramjonghu-site", + "description": "Personal website and central hub for my projects, systems, and self-hosted services.", + "tags": ["React", "TypeScript"] + }, + { + "name": "MarAn-site", + "url": "https://git.aramjonghu.dev/AramJonghu/maran-site", + "description": "Portfolio site with Zig backend serving static frontend + contact API.", + "tags": ["Zig using zap", "JavaScript", "plain HTML"] + }, + { + "name": "z-bar-qt (also known as ZShell)", + "url": "https://git.zach-dev.cc/zach/z-bar-qt", + "description": "ZShell is a Hyprland-focused desktop shell built with Quickshell + Qt6/QML.\nI mostly contributed by adding CI/CD and Python", + "tags": ["QML", "Python", "C++", "Rust"] + } + ] +}