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 ( +
+ 팩 워크플로우로 제작된 결과물입니다. 장르별로 다양한 톤을 확인해보세요.
+
+
+ 일부 샘플은 런칭 직후 순차 공개됩니다.
+
+
{s.genre.toUpperCase()}
++ {s.title} +
+{s.duration}
++ {s.embedId ? '영상 재생' : '영상 준비 중'} +
++ 동일 워크플로우 팩 ₩39,000부터. +
+ + 팩 가격 보기 + +