feat: add project and site data files

This commit is contained in:
2026-03-22 21:54:49 +09:00
commit 62e3f5230f
2 changed files with 51 additions and 0 deletions

30
data/projects.js Normal file
View File

@@ -0,0 +1,30 @@
const projects = [
{
name: "One of the Plans (A301)",
description: "Unity 기반 MMORPG 게임 프로젝트. 멀티플레이어 서버는 Go로 구현.",
tags: ["Unity", "C#", "Go"],
link: "https://a301.tolelom.xyz",
category: "게임"
},
{
name: "No-Ill",
description: "노인 낙상 감지 및 외로움 방지를 위한 IoT 장치와 보호자 앱.",
tags: ["React", "Go", "IoT"],
link: "https://no-ill.tolelom.xyz",
category: "헬스케어"
},
{
name: "SION",
description: "Jetson 키트를 활용한 자율주행 및 모니터링 웹 페이지.",
tags: ["Python", "Jetson", "Web"],
link: "https://sion.tolelom.xyz",
category: "IoT"
},
{
name: "Neo-Slasher",
description: "Unity 기반 액션 게임 프로젝트.",
tags: ["Unity", "C#"],
link: null,
category: "게임"
}
];