Files
tolelom.xyz/data/projects.js
tolelom 9525f1ee53 feat: add Docker deployment, design polish, and content update
- Add Dockerfile, nginx.conf, docker-compose.yml for containerized deployment
- Improve typography with Pretendard font, larger hero, accent colors
- Add Experience section (HI-ARC, ICPC, contests)
- Add TOL project, enhance project descriptions
- Update Skills with Backend category, more technologies
- Add Solved.ac link, education period
- Change nav logo to "tolelom", widen content area to 960px
- Project card links now use domain labels as buttons

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-22 22:29:06 +09:00

46 lines
1.7 KiB
JavaScript

const projects = [
{
name: "One of the Plans (A301)",
description: "Unity 기반 MMORPG 게임 프로젝트. 멀티플레이어 서버는 Go로 구현.",
tags: ["Unity", "C#", "Go"],
links: [
{ label: "a301.tolelom.xyz", url: "https://a301.tolelom.xyz" },
{ label: "GitHub", url: "https://github.com/tolelom" }
],
category: "게임"
},
{
name: "No-Ill",
description: "노인 낙상 감지 및 외로움 방지를 위한 IoT 장치와 보호자 앱. 센서 기반 낙상 감지 시스템과 보호자용 모니터링 웹/앱을 개발.",
tags: ["React", "Go", "IoT"],
links: [
{ label: "no-ill.tolelom.xyz", url: "https://no-ill.tolelom.xyz" },
{ label: "no-ill-app.tolelom.xyz", url: "https://no-ill-app.tolelom.xyz" }
],
category: "헬스케어"
},
{
name: "TOL",
description: "한글 프로그래밍 언어 개발 프로젝트. 3인 팀으로 진행하며 프로그래밍 언어 분야에 흥미를 가지게 된 계기. 순수 C++로 언어를 설계하고 구현.",
tags: ["C++", "Express.js", "MongoDB"],
links: [],
category: "언어 개발"
},
{
name: "SION",
description: "Jetson 키트를 활용한 자율주행 및 모니터링 웹 페이지.",
tags: ["Python", "Jetson", "Web"],
links: [
{ label: "sion.tolelom.xyz", url: "https://sion.tolelom.xyz" }
],
category: "IoT"
},
{
name: "Neo-Slasher",
description: "게임 개발 동아리 ExP에서 8인 팀으로 진행한 액션 게임. 프로그래밍 디렉터로 데이터 관리, 인터페이스 개발 및 전체 프로그래밍 과정을 담당.",
tags: ["Unity", "C#"],
links: [],
category: "게임"
}
];