'use client'; import Link from 'next/link'; interface ToolCard { id: string; title: string; subtitle: string; description: string; tags: string[]; href: string; status: 'live' | 'beta' | 'coming'; icon: React.ReactNode; gradient: string; } const TOOLS: ToolCard[] = [ { id: 'ebay-parts', title: '이베이 부품 AI 리스팅', subtitle: 'eBay Auto Parts Listing Tool', description: '품번 하나 입력하면 AI가 RockAuto·eBay를 크롤링하고, 리스팅 제목·Fitment·관세까지 자동 생성합니다. 수작업 30분 → 10초.', tags: ['크롤링', 'Claude AI', '관세 계산', 'eBay Motors'], href: '/tools/ebay-parts', status: 'live', icon: ( ), gradient: 'from-blue-600 to-cyan-500', }, { id: 'naver-blog', title: '네이버 블로그 자동화', subtitle: 'Naver Blog AI Writer', description: '주제·톤·분량만 선택하면 AI가 SEO 최적화된 블로그 글을 자동 작성합니다. 소제목 구조, 이미지 배치 가이드까지 한 번에.', tags: ['GPT/Claude', 'SEO 최적화', '자동 포스팅', '이미지 가이드'], href: '/tools/naver-blog', status: 'live', icon: ( ), gradient: 'from-emerald-600 to-teal-500', }, ]; const STATUS_BADGE: Record = { live: { label: '체험 가능', className: 'bg-emerald-500/15 text-emerald-400 border-emerald-500/30' }, beta: { label: 'BETA', className: 'bg-amber-500/15 text-amber-400 border-amber-500/30' }, coming: { label: '준비 중', className: 'bg-slate-500/15 text-slate-400 border-slate-500/30' }, }; export default function ToolsShowcasePage() { return ( {/* Hero */} 실제로 작동하는 완성형 데모 여긴 뭐 만들어요? “이런 것도 자동화돼요?” — 직접 체험해보세요. 아래 툴들은 실제 고객 프로젝트를 기반으로 제작된 완성형 레퍼런스입니다. {/* Tool Cards */} {TOOLS.map((tool) => { const badge = STATUS_BADGE[tool.status]; return ( {/* Gradient header */} {/* Icon + Badge */} {tool.icon} {badge.label} {/* Title */} {tool.title} {tool.subtitle} {/* Description */} {tool.description} {/* Tags */} {tool.tags.map((tag) => ( {tag} ))} {/* CTA */} 체험하기 ); })} {/* Bottom CTA */} 우리 업무에도 이런 자동화가 가능할까? 위 데모를 참고해 원하시는 자동화를 구체적으로 의뢰하세요. 무료 상담부터 시작합니다. 무료 상담 신청하기 ); }
“이런 것도 자동화돼요?” — 직접 체험해보세요. 아래 툴들은 실제 고객 프로젝트를 기반으로 제작된 완성형 레퍼런스입니다.
{tool.subtitle}
{tool.description}
위 데모를 참고해 원하시는 자동화를 구체적으로 의뢰하세요. 무료 상담부터 시작합니다.