Files
tolelom.xyz/data/projects.js
tolelom ed4ca31c5e feat: add profile photo, enhance content and design
- Add cropped profile photo in hero section
- Expand About section with development philosophy and infrastructure details
- Enhance Experience descriptions with specific activities
- Improve project descriptions with roles and technical details
- Redesign section titles to uppercase label style with accent color
- Increase hero and section spacing for better visual rhythm

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 00:19:12 +09:00

46 lines
2.2 KiB
JavaScript

const projects = [
{
name: "One of the Plans (A301)",
description: "Unity 기반 MMORPG 게임 프로젝트. Go로 멀티플레이어 게임 서버를 설계·구현하고, Unity C#으로 클라이언트를 개발. 실시간 동기화, 전투 시스템, 캐릭터 관리 등 핵심 게임 로직을 담당.",
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 프로젝트. 센서 기반 낙상 감지 장치, 디스플레이 인터페이스, 보호자용 모니터링 웹과 앱을 개발. Go(Fiber) 백엔드와 React 프론트엔드로 구성.",
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 키트를 활용한 자율주행 RC카 프로젝트. Python으로 차선 인식 및 주행 제어를 구현하고, 실시간 카메라 피드와 주행 상태를 모니터링하는 웹 대시보드를 개발.",
tags: ["Python", "Jetson", "Web"],
links: [
{ label: "sion.tolelom.xyz", url: "https://sion.tolelom.xyz" }
],
category: "IoT"
},
{
name: "Neo-Slasher",
description: "게임 개발 동아리 ExP에서 8인 팀으로 제작한 3D 액션 게임. 프로그래밍 디렉터로서 데이터 관리 시스템, UI/인터페이스 설계, 전투 로직 등 전체 프로그래밍 아키텍처를 주도.",
tags: ["Unity", "C#"],
links: [],
category: "게임"
}
];