small fix
This commit is contained in:
@@ -24,7 +24,7 @@ import PersonaCard from "../cards/PersonaCard/PersonaCard";
|
|||||||
const STAGE_CARD_CONTENT = [
|
const STAGE_CARD_CONTENT = [
|
||||||
{
|
{
|
||||||
key: "songwriter",
|
key: "songwriter",
|
||||||
title: "Nathalie",
|
title: "Céline",
|
||||||
description: "Let’s write lyrics together !",
|
description: "Let’s write lyrics together !",
|
||||||
image: ai.leftIcon,
|
image: ai.leftIcon,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ import { LinearGradient } from "../LinearGradient/LinearGradient";
|
|||||||
const STAGE_CARD_CONTENT = [
|
const STAGE_CARD_CONTENT = [
|
||||||
{
|
{
|
||||||
key: "songwriter",
|
key: "songwriter",
|
||||||
title: "Nathalie",
|
title: "Céline",
|
||||||
description: "Let’s write lyrics together !",
|
description: "Let’s write lyrics together !",
|
||||||
image: ai.leftIcon,
|
image: ai.leftIcon,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -38,14 +38,6 @@ const MusicLandHeader = ({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={{ alignItems: "center", gap: 16 }}>
|
<View style={{ alignItems: "center", gap: 16 }}>
|
||||||
<Image
|
|
||||||
source={logo || icons.musicLandLogo}
|
|
||||||
style={{
|
|
||||||
alignSelf: "center",
|
|
||||||
height: isWeb ? 150 : 100,
|
|
||||||
resizeMode: "contain",
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<View style={{ width: "100%", ...Style.containerRow, gap: 16 }}>
|
<View style={{ width: "100%", ...Style.containerRow, gap: 16 }}>
|
||||||
<Pressable style={backButtonStyle} onPress={onPressBack}>
|
<Pressable style={backButtonStyle} onPress={onPressBack}>
|
||||||
<Image
|
<Image
|
||||||
@@ -82,6 +74,14 @@ const MusicLandHeader = ({
|
|||||||
</Pressable>
|
</Pressable>
|
||||||
)}
|
)}
|
||||||
</View>
|
</View>
|
||||||
|
<Image
|
||||||
|
source={logo || icons.musicLandLogo}
|
||||||
|
style={{
|
||||||
|
alignSelf: "center",
|
||||||
|
height: isWeb ? 150 : 100,
|
||||||
|
resizeMode: "contain",
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -219,7 +219,7 @@ const Home = ({ navigation, route }) => {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (route?.params?.showLyricsCongrats) {
|
if (route?.params?.showLyricsCongrats) {
|
||||||
Alert(
|
Alert(
|
||||||
"Nathalie",
|
"Céline",
|
||||||
"Bravo ! Vous venez de terminer de créer les paroles de votre musique ! Maintenant vous pouvez passer à la prochaine étape : le Studio avec Malik. Dans cette étape vous allez pouvoir donner vie à votre chanson !"
|
"Bravo ! Vous venez de terminer de créer les paroles de votre musique ! Maintenant vous pouvez passer à la prochaine étape : le Studio avec Malik. Dans cette étape vous allez pouvoir donner vie à votre chanson !"
|
||||||
);
|
);
|
||||||
navigation?.setParams?.({ showLyricsCongrats: false });
|
navigation?.setParams?.({ showLyricsCongrats: false });
|
||||||
|
|||||||
@@ -83,8 +83,8 @@ const LikedPlayback = () => {
|
|||||||
</Text>
|
</Text>
|
||||||
<GradientButton
|
<GradientButton
|
||||||
containerStyle={{ padding: 2 }}
|
containerStyle={{ padding: 2 }}
|
||||||
onPress={() => navigate(Routes.WritingLyrics)}
|
onPress={() => navigate(Routes.Playbacks)}
|
||||||
title=" Créer un playback"
|
title="Voir les playbacks"
|
||||||
></GradientButton>
|
></GradientButton>
|
||||||
</View>
|
</View>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user