사주 기능 이식 & 로그인, 유저 페이지 Supabase 연동 & 토스 페이먼츠 결제 연동 & 사주 심층 분석을 위한 기능 분리

This commit is contained in:
2026-03-10 04:28:56 +09:00
parent e8076b2b7a
commit 83043a357b
45 changed files with 8058 additions and 32 deletions

66
lib/products.ts Normal file
View File

@@ -0,0 +1,66 @@
export interface Product {
id: string;
name: string;
price: number;
type: 'one_time' | 'monthly' | 'annual';
description: string;
}
export const PRODUCTS: Record<string, Product> = {
lotto_basic: {
id: 'lotto_basic',
name: '로또 기본 플랜',
price: 4900,
type: 'monthly',
description: '매주 5개 번호 조합 이메일 제공',
},
lotto_premium: {
id: 'lotto_premium',
name: '로또 프리미엄 플랜',
price: 9900,
type: 'monthly',
description: '매주 3회 번호 + 텔레그램 알림',
},
lotto_annual: {
id: 'lotto_annual',
name: '로또 연간 플랜',
price: 89900,
type: 'annual',
description: '프리미엄 12개월 (2개월 무료)',
},
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가지 항목 상세 해석',
},
};