aboutsummaryrefslogtreecommitdiff
path: root/src/constants
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants')
-rw-r--r--src/constants/api.ts2
-rw-r--r--src/constants/constants.ts33
2 files changed, 33 insertions, 2 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts
index 3b2289fd..de43b94d 100644
--- a/src/constants/api.ts
+++ b/src/constants/api.ts
@@ -27,6 +27,8 @@ export const BLOCK_USER_ENDPOINT: string = API_URL + 'block/';
export const PASSWORD_RESET_ENDPOINT: string = API_URL + 'password-reset/';
export const MOMENT_CATEGORY_ENDPOINT: string = API_URL + 'moment-category/';
export const NOTIFICATIONS_ENDPOINT: string = API_URL + 'notifications/';
+export const DISCOVER_ENDPOINT: string = API_URL + 'discover/';
+export const WAITLIST_USER_ENDPOINT: string = API_URL + 'waitlist-user/';
// Register as FCM device
export const FCM_ENDPOINT: string = API_URL + 'fcm/';
diff --git a/src/constants/constants.ts b/src/constants/constants.ts
index 531420e6..b96d9438 100644
--- a/src/constants/constants.ts
+++ b/src/constants/constants.ts
@@ -1,5 +1,5 @@
import {ReactText} from 'react';
-import {BackgroundGradientType, MomentCategoryType} from './../types/';
+import {BackgroundGradientType, ExploreSectionType} from './../types/';
import {SCREEN_WIDTH, SCREEN_HEIGHT} from '../utils';
export const CHIN_HEIGHT = 34;
@@ -60,6 +60,7 @@ export const YOUTUBE_FONT_COLOR: string = '#FCA4A4';
export const TAGG_DARK_BLUE = '#4E699C';
export const TAGG_TEXT_LIGHT_BLUE: string = '#698DD3';
+export const TAGG_LIGHT_PURPLE = '#F4DDFF';
export const TAGGS_GRADIENT = {
start: '#9F00FF',
@@ -103,7 +104,7 @@ export const BROWSABLE_SOCIAL_URLS: Record<string, string> = {
Twitter: 'https://twitter.com/',
};
-export const MOMENT_CATEGORIES: Array<MomentCategoryType> = [
+export const MOMENT_CATEGORIES: string[] = [
'Friends',
'Adventure',
'Photo Dump',
@@ -140,3 +141,31 @@ export const CLASS_YEAR_LIST: Array<string> = [
'2025',
'2026',
];
+
+export const TAGG_WEBSITE = 'https://www.tagg.id/';
+export const MOMENT_CATEGORY_BG_COLORS: string[] = [
+ '#5E4AE4',
+ '#5044A6',
+ '#4755A1',
+ '#444BA8',
+ '#374898',
+ '#3F5C97',
+ '#3A649F',
+ '#386A95',
+ '#366D84',
+ '#335E76',
+ '#2E5471',
+ '#274765',
+ '#225363',
+ '#365F6A',
+ '#4E7175',
+];
+
+export const EXPLORE_SECTION_TITLES: ExploreSectionType[] = [
+ 'New to Tagg',
+ 'People You May Know',
+ 'Trending on Tagg',
+ "Brown '21",
+ "Brown '22",
+ "Brown '23",
+];