This commit is contained in:
2025-09-02 14:28:01 +02:00
11 changed files with 527 additions and 261 deletions
+7 -6
View File
@@ -30,8 +30,8 @@ const CREATE_DATA = [
img: ai.bena,
bg: background.productionBG,
label: "Bena",
desc: "Come back when you want\nto publish the song!",
type: "Producer",
desc: "Come back when you want\nto generate cover!",
type: "Designer",
},
{
img: ai.john,
@@ -85,18 +85,19 @@ const NewMusicOptions = ({ route }) => {
if (isLocked(index)) return;
switch (index) {
case 0:
navigate(Routes.WritingLyrics, {});
navigate(Routes.WritingLyrics, {
projectId: currentProjet?.id || null,
});
break;
case 1:
navigate(Routes.Studio, { action: item.type });
navigate(Routes.Compose, { projectId: currentProjet.id });
break;
case 2:
navigate(Routes.Production, { action: item.type });
navigate(Routes.PouchReady, { projectId: currentProjet.id });
break;
case 3:
console.log("test");
navigate(Routes.Playback, {
action: item.type,
project: currentProjet,
});
default: