copy: 고객 고통 중심 카피 전면 재작성 + 사이드바 정체성 강화

- Sidebar: 'v2' 배지 제거, '박재오의 개발 공방' 태그라인으로 정체성 명확화,
  로그인 버튼 → 'AI 사주·키트 이용 시 필요' 안내 텍스트로 교체
- automation: automationTypes 6개 설명을 기능 나열 → 고객 고통 시나리오 중심으로 재작성
- website: samples 8개 desc을 '추상적 형용사' → '"고객 문제 → 해결"' 구조로 전환

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-02 00:49:19 +09:00
parent 6c5e661a6d
commit 7c59dafaeb
3 changed files with 55 additions and 34 deletions

View File

@@ -118,11 +118,8 @@ export default function Sidebar({ isOpen, onClose }: SidebarProps) {
{/* Brand */}
<div className="px-5 pt-6 pb-5 flex-shrink-0">
<Link href="/" onClick={onClose} className="block group">
<div className="flex items-baseline gap-2">
<span className="text-white font-bold text-lg tracking-tight leading-none"></span>
<span className="text-slate-600 text-xs font-mono">v2</span>
</div>
<p className="text-slate-500 text-xs mt-1 font-mono tracking-tight"> · 7</p>
<div className="text-white font-bold text-lg tracking-tight leading-none"></div>
<p className="text-slate-500 text-xs mt-1 tracking-tight"> </p>
</Link>
</div>
@@ -205,16 +202,10 @@ export default function Sidebar({ isOpen, onClose }: SidebarProps) {
</button>
</div>
) : (
<Link
href="/login"
onClick={onClose}
className="flex items-center gap-2 px-3 py-2 rounded-lg text-slate-500 hover:text-slate-200 hover:bg-white/5 transition-all text-sm group"
>
<svg className="w-4 h-4 text-slate-600 group-hover:text-slate-400 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={1.5} d="M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1" />
</svg>
<span className="font-medium"> / </span>
</Link>
<p className="px-3 text-slate-700 text-xs leading-relaxed">
AI · <br/>
<Link href="/login" onClick={onClose} className="text-slate-500 hover:text-slate-300 underline underline-offset-2 transition-colors"> </Link>
</p>
)}
</div>
</aside>