feat(work): /work/blog — 현 /services/blog 컨텐츠 이동

@/ 절대 경로 import + 내부 Link 새 URL.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-16 03:41:58 +09:00
parent 31c376da07
commit 5309f6d08b
2 changed files with 269 additions and 0 deletions

26
app/work/blog/layout.tsx Normal file
View File

@@ -0,0 +1,26 @@
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: '블로그 자동화 솔루션 팩 | 쟁승메이드',
description:
'쿠팡파트너스·네이버 애드포스트·브랜드커넥트 수익을 자동화하는 프롬프트 조합법 45종 + 구조 템플릿 PDF 80p + 샘플 글 10편. ₩29,000 한 번 결제, 평생 무료 업데이트.',
keywords: [
'블로그 자동화',
'AI 블로그 글쓰기',
'쿠팡파트너스 자동화',
'애드포스트 수익화',
'네이버 블로그 SEO',
'ChatGPT 블로그',
'블로그 프롬프트',
],
openGraph: {
title: '블로그 자동화 솔루션 팩 | 쟁승메이드',
description:
'쿠팡파트너스·애드포스트 수익을 자동화하는 프롬프트 + 템플릿 + 샘플. ₩29,000.',
url: 'https://jaengseung-made.com/work/blog',
},
};
export default function BlogLayout({ children }: { children: React.ReactNode }) {
return children;
}