feat(redesign): 쇼케이스 그래디언트 타일 → 라이트 MockWindow 카드

lib/showcase.ts를 mock 키 기반으로 교체(보라 4슬롯 제거, 목업 6종 다양화).
ShowcaseCard 캔버스/시드/그래디언트 제거 → surface-alt 스테이지 + 흰 MockWindow.
키 목록을 JSX-free keys.ts로 분리해 vitest 가드레일 테스트 추가.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01A2N6SziVSPfavx1j5rAs52
This commit is contained in:
2026-06-30 14:40:56 +09:00
parent c1afb58bcd
commit 989cc25465
5 changed files with 105 additions and 312 deletions

View File

@@ -0,0 +1,17 @@
// 목업 키 — JSX를 끌어오지 않는 순수 모듈 (vitest/showcase가 안전하게 참조).
export type MockKey =
| 'dashboard'
| 'feed'
| 'match'
| 'commerce'
| 'site'
| 'booking';
export const MOCK_KEYS: MockKey[] = [
'dashboard',
'feed',
'match',
'commerce',
'site',
'booking',
];