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부터.

팩 가격 보기
); }