parent
8f89549737
commit
9e75786127
@ -1,13 +1,16 @@
|
||||
import {SafeAreaView, View, Text} from "react-native";
|
||||
import React from "react";
|
||||
import InternalError from "@/components/error/InternalErrorProblem";
|
||||
|
||||
export default function AddScreen() {
|
||||
return (
|
||||
<SafeAreaView>
|
||||
<View>
|
||||
<Text className="m-7 font-extrabold">Welcome to Add Screen </Text>
|
||||
<Text>We will do it soon</Text>
|
||||
<InternalError/>
|
||||
</View>
|
||||
</SafeAreaView>
|
||||
);
|
||||
}
|
||||
|
||||
//<Text className="m-7 font-extrabold">Welcome to Add Screen </Text>
|
||||
// <Text>We will do it soon</Text>
|
After Width: | Height: | Size: 160 KiB |
After Width: | Height: | Size: 532 KiB |
After Width: | Height: | Size: 563 KiB |
After Width: | Height: | Size: 332 KiB |
After Width: | Height: | Size: 176 KiB |
@ -0,0 +1,15 @@
|
||||
import React from "react";
|
||||
import {FEATURE_LOCKED} from "@/components/Errors";
|
||||
import Error from "@/app/(utility)/Error";
|
||||
import blockedPict from "@/assets/images/Blocked.png";
|
||||
|
||||
export default function Blocked() {
|
||||
return (
|
||||
<Error
|
||||
picture={blockedPict}
|
||||
problem="Fonctionnalité bloquée"
|
||||
description={FEATURE_LOCKED}
|
||||
information="Devenez PREMIUM pour débloquer"
|
||||
/>
|
||||
);
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
import React from "react";
|
||||
import {INTERNAL_ERROR} from "@/components/Errors";
|
||||
import Error from "@/app/(utility)/Error";
|
||||
import internalErrorPict from "@/assets/images/InternalError.png";
|
||||
|
||||
export default function InternalError() {
|
||||
return (
|
||||
<Error
|
||||
picture={internalErrorPict}
|
||||
problem="Problème interne"
|
||||
description={INTERNAL_ERROR}
|
||||
information="Contactez le support"
|
||||
/>
|
||||
);
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
import React from "react";
|
||||
import {MAINTENANCE} from "@/components/Errors";
|
||||
import Error from "@/app/(utility)/Error";
|
||||
import maintenancePict from "@/assets/images/Maintenance.png";
|
||||
|
||||
export default function Maintenance() {
|
||||
return (
|
||||
<Error
|
||||
picture={maintenancePict}
|
||||
problem="Maintenance"
|
||||
description={MAINTENANCE}
|
||||
information="Revenez plus tard"
|
||||
/>
|
||||
);
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
import React from "react";
|
||||
import {NO_INTERNET} from "@/components/Errors";
|
||||
import Error from "@/app/(utility)/Error";
|
||||
import noInternetPict from "@/assets/images/NoInternet.png";
|
||||
|
||||
export default function NoInternet() {
|
||||
return (
|
||||
<Error
|
||||
picture={noInternetPict}
|
||||
problem="Pas d'internet"
|
||||
description={NO_INTERNET}
|
||||
information="Réessayez plus tard"
|
||||
/>
|
||||
);
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
import React from "react";
|
||||
import {NOT_AUTHORIZED} from "@/components/Errors";
|
||||
import Error from "@/app/(utility)/Error";
|
||||
import notAllowedPict from "@/assets/images/NotAllowed.png";
|
||||
|
||||
export default function NotAllowedProblem() {
|
||||
return (
|
||||
<Error
|
||||
picture={notAllowedPict}
|
||||
problem="Pas autorisé"
|
||||
description={NOT_AUTHORIZED}
|
||||
information="Connectez vous avec plus de privilèges"
|
||||
/>
|
||||
);
|
||||
}
|
Loading…
Reference in new issue