From 807c01246b3e37e023d603a26fd56aac91a9f6eb Mon Sep 17 00:00:00 2001 From: gahusb Date: Sat, 16 May 2026 03:17:43 +0900 Subject: [PATCH] =?UTF-8?q?feat(music):=20/music/samples=20=E2=80=94=20?= =?UTF-8?q?=ED=98=84=20/services/music/samples=20=EC=BB=A8=ED=85=90?= =?UTF-8?q?=EC=B8=A0=20=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @/ 절대 경로 import + 내부 Link 새 URL. 원본은 Phase D에서 삭제 예정. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/music/samples/page.tsx | 102 +++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 app/music/samples/page.tsx diff --git a/app/music/samples/page.tsx b/app/music/samples/page.tsx new file mode 100644 index 0000000..16c9f45 --- /dev/null +++ b/app/music/samples/page.tsx @@ -0,0 +1,102 @@ +import type { Metadata } from 'next'; +import Link from 'next/link'; + +export const metadata: Metadata = { + title: 'AI 음악·뮤비 샘플 갤러리', + description: '쟁승메이드 AI 음악 팩으로 제작한 샘플 뮤직비디오 모음. 장르별 결과물을 직접 확인하세요.', +}; + +type Sample = { + id: string; + title: string; + genre: string; + duration: string; + views?: string; + featured?: boolean; + embedId?: string; +}; + +const SAMPLES: Sample[] = [ + { id: 's1', title: 'K-POP 스타일 TOP 샘플', genre: 'K-POP', duration: '0:45', featured: true }, + { id: 's2', title: 'Lo-fi 감성 MV', genre: 'Lo-fi', duration: '1:02' }, + { id: 's3', title: '시티팝 무드 영상', genre: 'City Pop', duration: '0:58' }, + { id: 's4', title: 'EDM 쇼츠 훅', genre: 'EDM', duration: '0:30' }, + { id: 's5', title: '발라드 감성 컷', genre: 'Ballad', duration: '1:10' }, + { id: 's6', title: '트랩 비트 쇼츠', genre: 'Trap', duration: '0:35' }, +]; + +export default function MusicSamplesPage() { + return ( +
+
+
+ SAMPLE GALLERY +

+ AI 음악·뮤비 샘플 모음 +

+

+ 팩 워크플로우로 제작된 결과물입니다. 장르별로 다양한 톤을 확인해보세요. +
+ + 일부 샘플은 런칭 직후 순차 공개됩니다. + +

+
+ +
+ {SAMPLES.map((s) => ( +
+
+ + {s.featured && ( + + TOP + + )} + +
+
🎬
+

{s.genre.toUpperCase()}

+

+ {s.title} +

+

{s.duration}

+

+ {s.embedId ? '영상 재생' : '영상 준비 중'} +

+
+
+ ))} +
+ +
+ NEXT +

+ 내 채널에도 이런 쇼츠 올리고 싶다면 +

+

+ 동일 워크플로우 팩 ₩39,000부터. +

+ + 팩 가격 보기 + +
+
+
+ ); +}