aboutsummaryrefslogtreecommitdiff
path: root/src/constants/constants.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2021-01-13 02:58:24 -0500
committerGitHub <noreply@github.com>2021-01-13 02:58:24 -0500
commit353c1ec685698bb86e0ff96a346d88205ee389cf (patch)
tree021f721cc8eb94ab007183c39d808e9eb3a468e8 /src/constants/constants.ts
parent5664f30a218af4620be69c66f4aba93d5972f890 (diff)
[TMA-531] New Explore Page (#179)
* redux done * done * added refresh control * added profile navigation * minor spacing change
Diffstat (limited to 'src/constants/constants.ts')
-rw-r--r--src/constants/constants.ts11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts
index 90d70724..b96d9438 100644
--- a/src/constants/constants.ts
+++ b/src/constants/constants.ts
@@ -1,5 +1,5 @@
import {ReactText} from 'react';
-import {BackgroundGradientType} from './../types/';
+import {BackgroundGradientType, ExploreSectionType} from './../types/';
import {SCREEN_WIDTH, SCREEN_HEIGHT} from '../utils';
export const CHIN_HEIGHT = 34;
@@ -160,3 +160,12 @@ export const MOMENT_CATEGORY_BG_COLORS: string[] = [
'#365F6A',
'#4E7175',
];
+
+export const EXPLORE_SECTION_TITLES: ExploreSectionType[] = [
+ 'New to Tagg',
+ 'People You May Know',
+ 'Trending on Tagg',
+ "Brown '21",
+ "Brown '22",
+ "Brown '23",
+];