feat: SEO 메타데이터 전 페이지 적용 + CTA 텍스트 통일

SEO 메타데이터:
- app/layout.tsx: title 템플릿, OG/Twitter 메타, robots 추가
- app/freelance/layout.tsx: 외주 개발 전용 메타 (납기 패널티 키워드)
- app/saju/layout.tsx: AI 사주 분석 메타
- app/services/lotto/layout.tsx: 로또 번호 추천 메타
- app/services/stock/layout.tsx: 주식 자동 매매 메타
- app/services/automation/layout.tsx: 업무 자동화 메타
- app/services/prompt/layout.tsx: 프롬프트 엔지니어링 메타
- app/services/website/layout.tsx: 홈페이지 제작 메타
- app/services/automation/tools/scraper/layout.tsx: 웹 크롤러 메타
- app/services/automation/tools/ppt/layout.tsx: PPT 자동화 메타

CTA 텍스트 통일:
- 주식: "시스템 확인 후 상담 신청 →" → "무료 상담 신청 →"
- 프롬프트: "견적 문의" → "무료 상담 신청", "프롬프트 설계 신청 →" → "무료 상담 신청 →"
- 자동화: "견적 문의" → "무료 상담 신청"

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-23 08:40:21 +09:00
parent b18f669510
commit 3e9ea863aa
13 changed files with 279 additions and 10 deletions

View File

@@ -0,0 +1,26 @@
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: '프롬프트 엔지니어링',
description:
'ChatGPT·Claude·Gemini에 최적화된 업무 특화 프롬프트 설계. 반복 업무를 AI로 자동화하는 프롬프트 라이브러리 제공. 건당 30,000원~.',
keywords: [
'프롬프트 엔지니어링',
'ChatGPT 프롬프트',
'Claude 프롬프트',
'AI 프롬프트',
'업무 AI 자동화',
'프롬프트 최적화',
'프롬프트 설계',
],
openGraph: {
title: '프롬프트 엔지니어링 | 쟁승메이드',
description:
'ChatGPT·Claude 업무 특화 프롬프트 설계. 건당 30,000원~, 납품 후 사용 교육 포함.',
url: 'https://jaengseung-made.com/services/prompt',
},
};
export default function PromptLayout({ children }: { children: React.ReactNode }) {
return children;
}