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>
26 lines
913 B
TypeScript
26 lines
913 B
TypeScript
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'PPT 제작 자동화 도구',
|
|
description:
|
|
'엑셀 데이터로 PPT를 자동 생성하는 Python 스크립트. 표지·내용·마무리 슬라이드 자동 구성, 색상 테마 커스터마이징. python-pptx 기반. 무료 다운로드.',
|
|
keywords: [
|
|
'PPT 자동화',
|
|
'파워포인트 자동 생성',
|
|
'python-pptx',
|
|
'PPT 제작 도구',
|
|
'엑셀 PPT 변환',
|
|
'프레젠테이션 자동화',
|
|
'무료 PPT 도구',
|
|
],
|
|
openGraph: {
|
|
title: 'PPT 제작 자동화 도구 | 쟁승메이드',
|
|
description: 'Python + python-pptx 기반 PPT 자동 생성 도구 무료 다운로드. 엑셀 연동 지원.',
|
|
url: 'https://jaengseung-made.com/services/automation/tools/ppt',
|
|
},
|
|
};
|
|
|
|
export default function PptLayout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|