feat: 스튜디오 페이지 + Suno API 프록시 + 팩 상세 가격 최상단 재구성

- TopNav: 홈/샘플/팩 상세/스튜디오 4개 링크 구조
- /services/music: 컴팩트 헤더 + PRICING 최상단 배치 (상세 포맷)
- /studio: Suno Generate UI (simple/custom 모드, 태그 프리셋, 폴링)
- /api/studio/generate, /api/studio/status: Suno API 프록시
This commit is contained in:
2026-04-15 03:27:17 +09:00
parent 3aeec8b323
commit a362f7b387
5 changed files with 704 additions and 145 deletions

View File

@@ -7,8 +7,8 @@ import { useState, useEffect } from 'react';
const LINKS = [
{ href: '/', label: '홈' },
{ href: '/services/music/samples', label: '샘플' },
{ href: '/services/music#pricing', label: '가격' },
{ href: '/services/music', label: '팩 상세' },
{ href: '/studio', label: '스튜디오' },
];
export default function TopNav() {