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>
27 lines
902 B
TypeScript
27 lines
902 B
TypeScript
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: '외주 개발 의뢰',
|
|
description:
|
|
'계약서 먼저, 납기 지키고, 소스코드 100% 인도. 47건 납품 완료. 7년차 백엔드 개발자에게 외주 개발을 맡겨보세요. 납기 지연 시 하루 10만 원 패널티.',
|
|
keywords: [
|
|
'외주 개발',
|
|
'프리랜서 개발자',
|
|
'웹 개발 외주',
|
|
'앱 개발 외주',
|
|
'RPA 개발',
|
|
'업무 자동화 외주',
|
|
'소프트웨어 개발',
|
|
],
|
|
openGraph: {
|
|
title: '외주 개발 의뢰 | 쟁승메이드',
|
|
description:
|
|
'47건 납품 완료. 계약서 먼저, 납기 패널티, 소스코드 100% 인도. 연락 두절 없는 개발자.',
|
|
url: 'https://jaengseung-made.com/freelance',
|
|
},
|
|
};
|
|
|
|
export default function FreelanceLayout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|