feat: [rd] 사운드 로고 생성기 Phase 1 MVP 구현

- Web Audio API 기반 사운드 합성 엔진
- 4종 신스(sine/square/triangle/sawtooth) + ADSR 엔벨로프
- 노트 시퀀서 UI (비주얼 바 + 드롭다운 편집)
- 10종 프리셋 (알림, 로고, 시작음, 성공 등)
- WAV 내보내기, JSON import/export, localStorage 저장
This commit is contained in:
김보곤
2026-03-08 12:15:32 +09:00
parent 441a20a5d2
commit c37d73c5bb
3 changed files with 953 additions and 0 deletions

View File

@@ -325,4 +325,16 @@ public function designInsight(Request $request): View|\Illuminate\Http\Response
return view('rd.design-insight.index');
}
/**
* 사운드 로고 생성기
*/
public function soundLogo(Request $request): View|\Illuminate\Http\Response
{
if ($request->header('HX-Request')) {
return response('', 200)->header('HX-Redirect', route('rd.sound-logo'));
}
return view('rd.sound-logo.index');
}
}