diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-02-18 14:09:00 -0500 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-02-18 14:09:00 -0500 |
| commit | c158b835a1f6cedd1448c2beb1389324a3c9e48a (patch) | |
| tree | accfce9584f6a2953fa4821368b0df36514cb49a /src/constants | |
| parent | 200cc2cc2c37d588bc37240161c3974f63ce02b4 (diff) | |
| parent | 99db144ce20fd5f1502f668795ae7cafbc5b2eae (diff) | |
Merge branch 'master' into tma626-people-tutorial
# Conflicts:
# src/screens/suggestedPeople/SuggestedPeopleScreen.tsx
Diffstat (limited to 'src/constants')
| -rw-r--r-- | src/constants/constants.ts | 5 | ||||
| -rw-r--r-- | src/constants/strings.ts | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts index 0195a634..fbf03744 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -75,6 +75,11 @@ export const AVATAR_GRADIENT = { end: '#215151', }; +export const NOTIFICATION_GRADIENT = [ + 'rgba(247, 248, 248, 1)', + 'rgba(247, 248, 248, 0)', +]; + export const SOCIAL_FONT_COLORS = { INSTAGRAM: INSTAGRAM_FONT_COLOR, FACEBOOK: FACEBOOK_FONT_COLOR, diff --git a/src/constants/strings.ts b/src/constants/strings.ts index 6cf5e7c2..0965bad0 100644 --- a/src/constants/strings.ts +++ b/src/constants/strings.ts @@ -43,13 +43,15 @@ export const ERROR_UPLOAD_SMALL_PROFILE_PIC = "Can't have a profile without a pi export const ERROR_VERIFICATION_FAILED_SHORT = 'Verification failed 😓'; export const MARKED_AS_MSG = (str: string) => `Marked as ${str}`; export const MOMENT_DELETED_MSG = 'Moment deleted....Some moments have to go, to create space for greater ones'; +export const NO_NEW_NOTIFICATIONS = 'You have no new notifications'; export const SUCCESS_CATEGORY_DELETE = 'Category successfully deleted, but its memory will live on'; export const SUCCESS_LINK = (str: string) => `Successfully linked ${str} 🎉`; export const SUCCESS_PIC_UPLOAD = 'Beautiful, the picture was uploaded successfully!'; export const SUCCESS_PWD_RESET = 'Your password was reset successfully!'; export const SUCCESS_VERIFICATION_CODE_SENT = 'New verification code sent! Check your phone messages for your code'; +export const UP_TO_DATE = 'Up-to-Date!'; export const UPLOAD_MOMENT_PROMPT_ONE_MESSAGE = 'Post your first moment to\n continue building your digital\nidentity!'; export const UPLOAD_MOMENT_PROMPT_THREE_HEADER = 'Continue to build your profile'; export const UPLOAD_MOMENT_PROMPT_THREE_MESSAGE = 'Continue to personalize your own digital space in\nthis community by filling your profile with\ncategories and moments!'; export const UPLOAD_MOMENT_PROMPT_TWO_HEADER = 'Create a new category'; -export const UPLOAD_MOMENT_PROMPT_TWO_MESSAGE = 'You can now create new categories \nand continue to fill your profile with moments!';
\ No newline at end of file +export const UPLOAD_MOMENT_PROMPT_TWO_MESSAGE = 'You can now create new categories \nand continue to fill your profile with moments!'; |
