From 0a4d5b70daa6692fdef0f7acfc80a4fd2abd5676 Mon Sep 17 00:00:00 2001 From: gahusb Date: Tue, 28 Apr 2026 02:30:29 +0900 Subject: [PATCH] =?UTF-8?q?feat(seo):=20OfferCatalog=EC=97=90=20=EC=99=B8?= =?UTF-8?q?=EC=A3=BC=C2=B7=EC=9B=B9=EC=82=AC=EC=9D=B4=ED=8A=B8=20Service?= =?UTF-8?q?=20=ED=95=AD=EB=AA=A9=20=EC=B6=94=EA=B0=80=20(=EA=B0=80?= =?UTF-8?q?=EA=B2=A9=20=EB=AF=B8=EC=A0=95)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Custom Build 사업부의 두 라인을 JSON-LD에 노출: - 맞춤 개발 외주 (/freelance) - 웹사이트 제작 (/services/website) 자체 정가가 미정이라 Offer.price 생략 (P1에서 가격 확정 후 추가). provider는 기존 Person(@id="...#person") 재사용. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/layout.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/app/layout.tsx b/app/layout.tsx index 1a0e85e..c65f915 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -95,6 +95,34 @@ const jsonLd = { { '@type': 'Offer', price: '149000', priceCurrency: 'KRW', availability: 'https://schema.org/InStock', url: 'https://jaengseung-made.com/services/music', itemOffered: { '@type': 'Product', name: 'AI 음악 마스터 구조 팩 (마스터)', url: 'https://jaengseung-made.com/services/music', description: '프로 전체 + 샘플 다수 + 우선 업데이트·베타 선공개.' } }, { '@type': 'Offer', price: '29000', priceCurrency: 'KRW', availability: 'https://schema.org/InStock', url: 'https://jaengseung-made.com/services/blog', itemOffered: { '@type': 'Product', name: '블로그 자동화 솔루션 팩', url: 'https://jaengseung-made.com/services/blog', description: '쿠팡파트너스·애드포스트 수익화 프롬프트 조합법 + 구조 템플릿 PDF + 샘플.' } }, { '@type': 'Offer', price: '0', priceCurrency: 'KRW', url: 'https://jaengseung-made.com/saju', itemOffered: { '@type': 'Service', name: 'AI 사주 분석', url: 'https://jaengseung-made.com/saju', description: '생년월일 기반 AI 사주팔자 분석. 무료 체험 가능.' } }, + { + '@type': 'Offer', + url: 'https://jaengseung-made.com/freelance', + availability: 'https://schema.org/InStock', + itemOffered: { + '@type': 'Service', + name: '맞춤 개발 외주', + url: 'https://jaengseung-made.com/freelance', + description: '7년차 백엔드 개발자의 1:1 맞춤 소프트웨어 개발 외주. 자동화·API·웹/모바일 등 사이트 한정가로 제공.', + serviceType: 'Custom Software Development', + provider: { '@id': 'https://jaengseung-made.com/#person' }, + areaServed: '대한민국', + }, + }, + { + '@type': 'Offer', + url: 'https://jaengseung-made.com/services/website', + availability: 'https://schema.org/InStock', + itemOffered: { + '@type': 'Service', + name: '웹사이트 제작', + url: 'https://jaengseung-made.com/services/website', + description: 'Next.js 기반 기업·브랜드 웹사이트 맞춤 제작. 반응형 + SEO + 배포 포함.', + serviceType: 'Web Development', + provider: { '@id': 'https://jaengseung-made.com/#person' }, + areaServed: '대한민국', + }, + }, ], }, },