aboutsummaryrefslogtreecommitdiff
path: root/src/constants/constants.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants/constants.ts')
-rw-r--r--src/constants/constants.ts52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts
index d24e352e..91029b3a 100644
--- a/src/constants/constants.ts
+++ b/src/constants/constants.ts
@@ -186,3 +186,55 @@ export const SP_WIDTH = 375;
export const SP_HEIGHT = 812;
export const SP_PAGE_SIZE = 5;
+
+export const SETTINGS_DATA = {
+ SettingsAndPrivacy: [
+ {
+ title: 'ACCOUNT',
+ data: [
+ {
+ title: 'Suggested People Profile',
+ preimage: require('../assets/images/tagg-logo.png'),
+ postimage: require('../assets/images/settings/white-arrow.png'),
+ },
+ {
+ title: 'Privacy',
+ preimage: require('../assets/images/settings/settings-white.png'),
+ postimage: require('../assets/images/settings/white-arrow.png'),
+ },
+ ],
+ },
+ {
+ title: 'GENERAL',
+ data: [
+ {
+ title: 'Terms of use',
+ preimage: require('../assets/images/settings/termsofuse.png'),
+ postimage: require('../assets/images/settings/white-arrow.png'),
+ },
+ {
+ title: 'Privacy Policy',
+ preimage: require('../assets/images/settings/privacypolicy.png'),
+ postimage: require('../assets/images/settings/white-arrow.png'),
+ },
+ ],
+ },
+ ],
+ PrivacyScreen: [
+ {
+ title: '',
+ data: [
+ {
+ title: 'Account Type',
+ preimage: require('../assets/images/settings/lock-white.png'),
+ postimage: require('../assets/images/settings/white-arrow.png'),
+ },
+ {
+ title: 'Blocked Accounts',
+ preimage: require('../assets/images/settings/blocked-white.png'),
+ postimage: require('../assets/images/settings/white-arrow.png'),
+ },
+ ],
+ },
+ ],
+};