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>
This commit is contained in:
@@ -233,7 +233,7 @@ export default function FreelancePage() {
|
||||
<h1 className="text-4xl md:text-5xl font-extrabold text-white tracking-tight leading-tight mb-4">
|
||||
연락 두절? 그런 거 없습니다.<br />
|
||||
<span className="text-transparent bg-clip-text bg-gradient-to-r from-[#5ba4ff] to-[#818cf8]">
|
||||
직접 만들고, 직접 책임집니다
|
||||
납기 지키고, 끝까지 책임집니다
|
||||
</span>
|
||||
</h1>
|
||||
<p className="text-blue-200/60 text-base md:text-lg max-w-xl mx-auto leading-relaxed mb-2">
|
||||
|
||||
@@ -295,7 +295,7 @@ export default function LandingPage() {
|
||||
|
||||
<p style={{ color: '#94a3b8', fontSize: 17, lineHeight: 1.85, fontFamily: "'Noto Sans KR', sans-serif", marginBottom: 36, maxWidth: 500 }}>
|
||||
개발자에게 맡겼다가 <span style={{ color: '#fca5a5' }}>연락 두절</span>된 경험 있으신가요?<br />
|
||||
납기 지키고 연락 끊지 않는 개발자가 계약서부터 소스코드 인도까지<br />한 명이 끝까지 책임집니다.
|
||||
납기 지키고 연락 끊지 않는 개발팀이 계약서부터 소스코드 인도까지<br />끝까지 책임집니다.
|
||||
</p>
|
||||
|
||||
<div style={{ display: 'flex', gap: 12, flexWrap: 'wrap' }}>
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
import { useState } from 'react';
|
||||
import Link from 'next/link';
|
||||
import ContactModal from '../../components/ContactModal';
|
||||
import PaymentButton from '../../components/PaymentButton';
|
||||
|
||||
const CHECKLIST = [
|
||||
'주로 어떤 AI 도구를 사용하는지 (ChatGPT / Claude / Gemini)',
|
||||
@@ -29,6 +30,7 @@ const plans = [
|
||||
desc: '특정 업무 1건 프롬프트 설계',
|
||||
features: ['요구사항 분석 및 인터뷰', '목적별 프롬프트 1개 설계', 'ChatGPT / Claude 최적화', '수정 1회 포함', '사용 가이드 문서 제공'],
|
||||
highlight: false,
|
||||
productId: 'prompt_single',
|
||||
},
|
||||
{
|
||||
name: '비즈니스 패키지',
|
||||
@@ -37,6 +39,7 @@ const plans = [
|
||||
desc: '업무 유형별 5개 프롬프트 세트',
|
||||
features: ['업무 분석 심층 인터뷰', '5개 프롬프트 맞춤 설계', '용도별 프롬프트 라이브러리', '수정 3회 포함', '활용 방법 1:1 교육 (30분)', '1개월 내 추가 조정 가능'],
|
||||
highlight: true,
|
||||
productId: 'prompt_business',
|
||||
},
|
||||
{
|
||||
name: '팀/기업 패키지',
|
||||
@@ -45,6 +48,7 @@ const plans = [
|
||||
desc: '부서·팀 전체 프롬프트 시스템 구축',
|
||||
features: ['팀 업무 프로세스 전체 분석', '10개 이상 프롬프트 설계', '팀 공유 프롬프트 라이브러리', '사내 가이드 문서 작성', '전 직원 교육 자료 제공', '3개월 내 업데이트 지원'],
|
||||
highlight: false,
|
||||
productId: null,
|
||||
},
|
||||
];
|
||||
|
||||
@@ -226,14 +230,25 @@ export default function PromptPage() {
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
{plan.productId ? (
|
||||
<PaymentButton
|
||||
productId={plan.productId}
|
||||
className={`block w-full text-center py-3 rounded-xl text-sm font-bold transition ${
|
||||
plan.highlight ? 'bg-violet-400 text-[#0d0a2e] hover:bg-violet-300' : 'bg-[#04102b] text-white hover:bg-[#0a1f5c]'
|
||||
}`}
|
||||
>
|
||||
바로 결제하기
|
||||
</PaymentButton>
|
||||
) : (
|
||||
<button
|
||||
onClick={() => openModal(`프롬프트 엔지니어링 - ${plan.name}`)}
|
||||
className={`block w-full text-center py-3 rounded-xl text-sm font-bold transition ${
|
||||
plan.highlight ? 'bg-violet-400 text-[#0d0a2e] hover:bg-violet-300' : 'bg-[#04102b] text-white hover:bg-[#0a1f5c]'
|
||||
}`}
|
||||
>
|
||||
신청하기
|
||||
견적 문의
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
@@ -7,11 +7,11 @@ import { useState, useEffect } from 'react';
|
||||
DATA
|
||||
══════════════════════════════════════════════ */
|
||||
const portfolio = [
|
||||
{ title: '한남동 단독주택', cat: '주거 인테리어', area: '245㎡', img: 'https://i.pinimg.com/1200x/a7/56/f4/a756f4482ad282353fe89b6ddc4ba3e1.jpg' },
|
||||
{ title: '청담 파인다이닝', cat: '상업 공간', area: '190㎡', img: 'https://i.pinimg.com/736x/f2/68/a7/f268a7cb3405e960a3d1bf7c44c9c7e5.jpg' },
|
||||
{ title: '성수 브랜드 오피스', cat: '업무 공간', area: '380㎡', img: 'https://i.pinimg.com/736x/f3/15/2a/f3152a792b7310b6475b40cf912ae0c1.jpg' },
|
||||
{ title: '용산 아파트 리모델링', cat: '리모델링', area: '95㎡', img: 'https://i.pinimg.com/474x/76/14/4a/76144a948cea14b77dd2fd43f0da8484.jpg' },
|
||||
{ title: '강남 카페 에스프레소랩', cat: '상업 공간', area: '120㎡', img: 'https://i.pinimg.com/736x/03/72/b0/0372b0f07d36982f4d3889290a7c762f.jpg' },
|
||||
{ title: '한남동 단독주택', cat: '주거 인테리어', area: '245㎡', img: 'https://picsum.photos/seed/interior-hannam/800/600' },
|
||||
{ title: '청담 파인다이닝', cat: '상업 공간', area: '190㎡', img: 'https://picsum.photos/seed/interior-dining/800/600' },
|
||||
{ title: '성수 브랜드 오피스', cat: '업무 공간', area: '380㎡', img: 'https://picsum.photos/seed/interior-office/800/600' },
|
||||
{ title: '용산 아파트 리모델링', cat: '리모델링', area: '95㎡', img: 'https://picsum.photos/seed/interior-remodel/800/600' },
|
||||
{ title: '강남 카페 에스프레소랩', cat: '상업 공간', area: '120㎡', img: 'https://picsum.photos/seed/interior-cafe/800/600' },
|
||||
];
|
||||
|
||||
const services = [
|
||||
@@ -19,19 +19,19 @@ const services = [
|
||||
title: '주거 인테리어', sub: 'Residential',
|
||||
desc: '생활의 리듬에 맞춘 공간을 설계합니다. 단독주택부터 아파트까지, 당신의 일상이 더 아름다워지도록 모든 디테일을 손수 고릅니다.',
|
||||
details: ['공간 기획 및 3D 시뮬레이션', '자재 선정 동행 서비스', '시공 전 과정 PM', '준공 후 AS 1년'],
|
||||
img: 'https://i.pinimg.com/736x/1d/af/b2/1dafb2117511994568cc45ceed09a64c.jpg',
|
||||
img: 'https://picsum.photos/seed/interior-residential/800/600',
|
||||
},
|
||||
{
|
||||
title: '상업 공간 디자인', sub: 'Commercial',
|
||||
desc: '브랜드의 철학이 공간 언어로 번역됩니다. 첫 방문객이 문을 열었을 때 느끼는 그 감정까지 설계의 범위입니다.',
|
||||
details: ['브랜드 아이덴티티 반영', '동선 및 고객 UX 설계', '조명·음향 플래닝', '설비 협력사 연계'],
|
||||
img: 'https://www.lunalightstudios.com/cdn/shop/files/contemporary-aluminum-funnel-suspension-pendant-lamp-fits-study-room-or-cafe-6-5-10-inch-wide-1-light-grey-226.webp?v=1768032185&width=675',
|
||||
img: 'https://picsum.photos/seed/interior-commercial/800/600',
|
||||
},
|
||||
{
|
||||
title: '리모델링 & 재생', sub: 'Remodeling',
|
||||
desc: '기존 공간의 가능성을 새로운 시선으로 바라봅니다. 구조적 변경부터 마감재 교체까지, 완전한 변신을 지원합니다.',
|
||||
details: ['현장 실측 및 구조 분석', '철거~완공 원스톱', '예산 내 최적 시공', '친환경 자재 우선 적용'],
|
||||
img: 'https://i.pinimg.com/474x/76/14/4a/76144a948cea14b77dd2fd43f0da8484.jpg',
|
||||
img: 'https://picsum.photos/seed/interior-remodeling/800/600',
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -63,4 +63,18 @@ export const PRODUCTS: Record<string, Product> = {
|
||||
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 교육 포함',
|
||||
},
|
||||
};
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<text x="60" y="302" font-family="'Malgun Gothic','Apple SD Gothic Neo',sans-serif" font-size="56" font-weight="900" fill="url(#headA)">그만하세요.</text>
|
||||
|
||||
<!-- 서브텍스트 -->
|
||||
<text x="60" y="348" font-family="'Malgun Gothic','Apple SD Gothic Neo',sans-serif" font-size="19" fill="#94a3b8">계약서로 시작 · 납기 보장 · AS까지 한 명이 책임</text>
|
||||
<text x="60" y="348" font-family="'Malgun Gothic','Apple SD Gothic Neo',sans-serif" font-size="19" fill="#94a3b8">계약서로 시작 · 납기 보장 · AS까지 책임</text>
|
||||
|
||||
<!-- 구분선 -->
|
||||
<line x1="60" y1="372" x2="280" y2="372" stroke="#1a3a7a" stroke-width="1.5"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Reference in New Issue
Block a user