From 47e2460f8f573d458ec4c0180a32a8052e55cfb1 Mon Sep 17 00:00:00 2001 From: gahusb Date: Tue, 28 Apr 2026 02:34:59 +0900 Subject: [PATCH] =?UTF-8?q?fix(seo):=20OfferCatalog=20=EC=99=B8=EC=A3=BC?= =?UTF-8?q?=C2=B7=EC=9B=B9=EC=82=AC=EC=9D=B4=ED=8A=B8=20=ED=95=AD=EB=AA=A9?= =?UTF-8?q?=20SEO=20=EC=A0=95=ED=95=A9=EC=84=B1=20=EB=B3=B4=EA=B0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - provider @id: #person → #business (기존 5개 항목과 provider 일관성) - priceSpecification 스텁 추가 (priceCurrency만, price 미정) — Search Console incomplete Offer 경고 방지, "price-on-request" 시그널. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/layout.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index c65f915..74f4d08 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -99,13 +99,17 @@ const jsonLd = { '@type': 'Offer', url: 'https://jaengseung-made.com/freelance', availability: 'https://schema.org/InStock', + priceSpecification: { + '@type': 'PriceSpecification', + priceCurrency: 'KRW', + }, 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' }, + provider: { '@id': 'https://jaengseung-made.com/#business' }, areaServed: '대한민국', }, }, @@ -113,13 +117,17 @@ const jsonLd = { '@type': 'Offer', url: 'https://jaengseung-made.com/services/website', availability: 'https://schema.org/InStock', + priceSpecification: { + '@type': 'PriceSpecification', + priceCurrency: 'KRW', + }, 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' }, + provider: { '@id': 'https://jaengseung-made.com/#business' }, areaServed: '대한민국', }, },