- app/freelance/page.tsx: 포트폴리오 카드에서 주식 자동 매매·로또 번호 분석 항목 삭제 - app/components/ContactModal.tsx: 문의 서비스 셀렉트에서 로또·주식 옵션 제거 → AI 자동화 키트 추가 - app/components/ContactForm.tsx: 동일하게 로또·주식 옵션 제거 → AI 자동화 키트 추가 - app/landing/page.tsx: 서비스 카드 배열에서 로또·주식 항목 삭제 - app/layout.tsx: 메타데이터 keywords에서 "로또 번호 추천", "주식 자동 매매" 제거 → "AI 자동화 키트" 추가 - app/sitemap.ts: /services/stock · /services/lotto URL 제거, /services/ai-kit 추가 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
52 lines
1.0 KiB
TypeScript
52 lines
1.0 KiB
TypeScript
import { MetadataRoute } from 'next';
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
const base = 'https://jaengseung-made.com';
|
|
const now = new Date();
|
|
|
|
return [
|
|
{
|
|
url: base,
|
|
lastModified: now,
|
|
changeFrequency: 'weekly',
|
|
priority: 1.0,
|
|
},
|
|
{
|
|
url: `${base}/freelance`,
|
|
lastModified: now,
|
|
changeFrequency: 'weekly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: `${base}/services/automation`,
|
|
lastModified: now,
|
|
changeFrequency: 'weekly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: `${base}/services/prompt`,
|
|
lastModified: now,
|
|
changeFrequency: 'weekly',
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: `${base}/services/website`,
|
|
lastModified: now,
|
|
changeFrequency: 'monthly',
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: `${base}/services/ai-kit`,
|
|
lastModified: now,
|
|
changeFrequency: 'weekly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: `${base}/saju`,
|
|
lastModified: now,
|
|
changeFrequency: 'monthly',
|
|
priority: 0.5,
|
|
},
|
|
];
|
|
}
|