hide: 로또·주식 서비스 잔존 노출 전면 제거

- 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>
This commit is contained in:
2026-03-28 13:56:24 +09:00
parent 8c22d2cdb2
commit 34977521fd
6 changed files with 6 additions and 73 deletions

View File

@@ -108,12 +108,7 @@ function ContactFormInner() {
className="w-full px-3.5 py-2.5 text-sm border border-[#dbe8ff] rounded-xl focus:ring-2 focus:ring-[#1a56db] focus:border-[#1a56db] outline-none bg-white disabled:bg-slate-50" className="w-full px-3.5 py-2.5 text-sm border border-[#dbe8ff] rounded-xl focus:ring-2 focus:ring-[#1a56db] focus:border-[#1a56db] outline-none bg-white disabled:bg-slate-50"
> >
<option> </option> <option> </option>
<option> - </option> <option>AI - </option>
<option> - </option>
<option> - </option>
<option> - </option>
<option> - </option>
<option> - </option>
<option> - </option> <option> - </option>
<option> - </option> <option> - </option>
<option> - / </option> <option> - / </option>

View File

@@ -262,12 +262,7 @@ export default function ContactModal({
> >
<option>{service}</option> <option>{service}</option>
<option> </option> <option> </option>
<option> - </option> <option>AI - </option>
<option> - </option>
<option> - </option>
<option> - </option>
<option> - </option>
<option> - </option>
<option> - </option> <option> - </option>
<option> - </option> <option> - </option>
<option> - / </option> <option> - / </option>

View File

@@ -38,32 +38,6 @@ function useCounter(target: number, duration = 1400) {
/* ─── Data ─── */ /* ─── Data ─── */
const portfolio = [ const portfolio = [
{
title: '주식 자동 매매 프로그램',
category: '핀테크 · 알고트레이딩',
desc: '텔레그램 연동 주식 자동 매매 시스템. 기술적 분석 신호 기반 자동 매수/매도, 포트폴리오 관리 기능 포함.',
result: '매매 신호 알림 2,300+회 자동 발송 (직접 운영 중)',
tags: ['Python', 'Telegram API', '증권사 API', 'SQLite'],
status: '직접 운영 중',
statusType: 'live',
accentFrom: '#011225',
accentTo: '#01204a',
accentColor: 'text-emerald-400',
borderAccent: 'border-emerald-400/30',
},
{
title: '로또 번호 분석 서비스',
category: '데이터 분석 · 구독 서비스',
desc: '1,100+회차 로또 데이터 분석 플랫폼. 출현 빈도·핫/콜드 번호 통계 및 매주 번호 조합 자동 생성.',
result: '1,100+회차 데이터 자동 수집·분석, 구독자 매주 자동 발송',
tags: ['Python', 'FastAPI', 'PostgreSQL', 'Next.js'],
status: 'NAS 서버 운영 중',
statusType: 'live',
accentFrom: '#1a0a00',
accentTo: '#3d1a00',
accentColor: 'text-amber-400',
borderAccent: 'border-amber-400/30',
},
{ {
title: 'Gmail 자동화 RPA', title: 'Gmail 자동화 RPA',
category: 'RPA · 업무 자동화', category: 'RPA · 업무 자동화',

View File

@@ -5,30 +5,6 @@ import Link from 'next/link';
/* ─────────────────────────── DATA ─────────────────────────── */ /* ─────────────────────────── DATA ─────────────────────────── */
const services = [ const services = [
{
id: 'lotto',
icon: 'lotto',
title: '로또 번호 추천',
tag: '구독형',
tagColor: '#7c3aed',
price: '월 9,900원~',
desc: '빅데이터·통계 기반 번호 분석. 실제 운영 중인 서버에서 매주 데이터를 갱신합니다.',
url: 'lotto.jaengseung-made.com',
href: '/services/lotto',
color: '#7c3aed',
},
{
id: 'stock',
icon: 'stock',
title: '주식 자동매매',
tag: '설치형',
tagColor: '#0ea5e9',
price: '설치비 49,000원~',
desc: '텔레그램 연동 자동 매매 프로그램. 조건 설정 후 24시간 무인 운영 가능.',
url: 'stock.jaengseung-made.com',
href: '/services/stock',
color: '#0ea5e9',
},
{ {
id: 'automation', id: 'automation',
icon: 'automation', icon: 'automation',

View File

@@ -16,8 +16,7 @@ export const metadata: Metadata = {
"업무 자동화", "업무 자동화",
"RPA", "RPA",
"웹사이트 제작", "웹사이트 제작",
"로또 번호 추천", "AI 자동화 키트",
"주식 자동 매매",
"텔레그램 봇", "텔레그램 봇",
"엑셀 자동화", "엑셀 자동화",
"프롬프트 엔지니어링", "프롬프트 엔지니어링",

View File

@@ -36,16 +36,10 @@ export default function sitemap(): MetadataRoute.Sitemap {
priority: 0.8, priority: 0.8,
}, },
{ {
url: `${base}/services/stock`, url: `${base}/services/ai-kit`,
lastModified: now, lastModified: now,
changeFrequency: 'monthly', changeFrequency: 'weekly',
priority: 0.7, priority: 0.9,
},
{
url: `${base}/services/lotto`,
lastModified: now,
changeFrequency: 'monthly',
priority: 0.6,
}, },
{ {
url: `${base}/saju`, url: `${base}/saju`,