<%- include('partials/navigation') %>

우리의 포트폴리오

혁신적인 프로젝트와 창의적인 솔루션들을 만나보세요

<% if (portfolioItems && portfolioItems.length > 0) { %> <% portfolioItems.forEach((item, index) => { %>
<% if (item.images && item.images.length > 0) { %> <%= item.title %> <% } else { %>
<% } %>
<%= getCategoryName(item.category) %>
<% if (item.featured) { %>
FEATURED
<% } %>

<%= item.title %>

<%= item.shortDescription || item.description %>

<% if (item.technologies && item.technologies.length > 0) { %> <% item.technologies.slice(0, 3).forEach(tech => { %> <%= tech %> <% }) %> <% if (item.technologies.length > 3) { %> +<%= item.technologies.length - 3 %> <% } %> <% } %>
<% if (item.clientName) { %> <%= item.clientName %> <% } %>
<%= item.viewCount || 0 %> <%= item.likes || 0 %>
<% }) %> <% } else { %>

아직 포트폴리오가 없습니다

곧 멋진 프로젝트들을 공개할 예정입니다!

<% } %>
<% if (portfolioItems && portfolioItems.length >= 9) { %>
<% } %>

다음 프로젝트의 주인공이 되어보세요

우리와 함께 혁신적인 디지털 솔루션을 만들어보세요

<%- include('partials/footer') %> <% // Helper function for category names function getCategoryName(category) { const categoryNames = { 'web-development': '웹 개발', 'mobile-app': '모바일 앱', 'ui-ux-design': 'UI/UX 디자인', 'branding': '브랜딩', 'marketing': '디지털 마케팅' }; return categoryNames[category] || category; } %>