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

@@ -420,6 +420,9 @@
// 디자인 인사이트
Route::get('/design-insight', [RdController::class, 'designInsight'])->name('design-insight');
// 사운드 로고 생성기
Route::get('/sound-logo', [RdController::class, 'soundLogo'])->name('sound-logo');
});
// 일일 스크럼 (Blade 화면만)