Files
jaengseung-made/lib/products.ts
gahusb 2a52d98c81 fix: 마케팅 카피 혼자/1인 표현 제거 + 토스페이먼츠 심사 준비 (항목 2·3)
- '한 명이 끝까지 책임' → '끝까지 책임' (landing/page.tsx)
- '직접 만들고, 직접 책임' → '납기 지키고, 끝까지 책임' (freelance/page.tsx)
- SVG 서브텍스트 '한 명이 책임' 제거 (thumb-homepage-A.svg)

토스페이먼츠 심사 항목 2 — 상품 추가:
- products.ts: prompt_single (30,000원), prompt_business (99,000원) 신규 등록
- 프롬프트 엔지니어링 서비스: PaymentButton 연결 (단건·비즈니스 플랜)
  팀/기업 패키지(가변가격)는 ContactModal 유지

토스페이먼츠 심사 항목 3 — 이미지 오류 수정:
- 인테리어 샘플: Pinterest 핫링크(차단 위험) → picsum.photos 교체 (7개)
- 쇼핑·독서 샘플: 이미 picsum.photos 사용, 이상 없음

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-22 18:29:06 +09:00

81 lines
2.2 KiB
TypeScript

export interface Product {
id: string;
name: string;
price: number;
type: 'one_time' | 'monthly' | 'annual';
description: string;
}
export const PRODUCTS: Record<string, Product> = {
lotto_gold: {
id: 'lotto_gold',
name: '로또 골드 플랜',
price: 900,
type: 'monthly',
description: '매주 1회 번호 추천 · 이메일 발송',
},
lotto_platinum: {
id: 'lotto_platinum',
name: '로또 플래티넘 플랜',
price: 2900,
type: 'monthly',
description: '매주 3회 번호 + 텔레그램 알림 + 상세 분석',
},
lotto_diamond: {
id: 'lotto_diamond',
name: '로또 다이아 플랜',
price: 9900,
type: 'monthly',
description: '횟수 무제한 + 연간 패턴 리포트 + 전체 기능',
},
stock_starter_install: {
id: 'stock_starter_install',
name: '주식 스타터 설치',
price: 99000,
type: 'one_time',
description: '1개 종목 자동 매매 설치',
},
stock_pro_install: {
id: 'stock_pro_install',
name: '주식 프로 설치',
price: 199000,
type: 'one_time',
description: '5개 종목 + 전략 커스터마이징 설치',
},
stock_starter_monthly: {
id: 'stock_starter_monthly',
name: '주식 스타터 월 유지비',
price: 29000,
type: 'monthly',
description: '스타터 월 유지보수 비용',
},
stock_pro_monthly: {
id: 'stock_pro_monthly',
name: '주식 프로 월 유지비',
price: 49000,
type: 'monthly',
description: '프로 월 유지보수 비용',
},
saju_detail: {
id: 'saju_detail',
name: 'AI 사주 상세 리포트',
price: 4900,
type: 'one_time',
description: 'AI 12가지 항목 상세 해석',
},
prompt_single: {
id: 'prompt_single',
name: '프롬프트 단건 설계',
price: 30000,
type: 'one_time',
description: '업무 특화 프롬프트 1개 맞춤 설계 · 수정 1회 포함',
},
prompt_business: {
id: 'prompt_business',
name: '프롬프트 비즈니스 패키지',
price: 99000,
type: 'one_time',
description: '업무 유형별 프롬프트 5개 설계 · 수정 3회 · 1:1 교육 포함',
},
};