Files
jaengseung-made/app/services/lotto/layout.tsx
gahusb 3e9ea863aa 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>
2026-03-23 08:40:21 +09:00

26 lines
867 B
TypeScript

import type { Metadata } from 'next';
export const metadata: Metadata = {
title: '로또 번호 추천',
description:
'1,100+회차 빅데이터 기반 로또 번호 분석. 핫/콜드 번호 통계, 몬테카를로 시뮬레이션으로 매주 최적 번호 조합을 제공합니다. 월 900원부터 구독.',
keywords: [
'로또 번호 추천',
'로또 번호 분석',
'로또 빅데이터',
'로또 통계',
'로또 번호 생성',
'핫넘버 콜드넘버',
],
openGraph: {
title: '로또 번호 추천 서비스 | 쟁승메이드',
description:
'1,100+회차 데이터 분석 · 월 900원 구독 · 이메일/텔레그램 자동 발송.',
url: 'https://jaengseung-made.com/services/lotto',
},
};
export default function LottoLayout({ children }: { children: React.ReactNode }) {
return children;
}