diff --git a/src/page/firstRun/internal/welcome-page.js b/src/page/firstRun/internal/welcome-page.js index 90f0856..1532ac2 100644 --- a/src/page/firstRun/internal/welcome-page.js +++ b/src/page/firstRun/internal/welcome-page.js @@ -4,6 +4,7 @@ import { ActivityIndicator, NativeModules, Platform, Text, View } from 'react-na import AsyncStorage from '@react-native-community/async-storage'; import Colors from 'styles/colors'; import Constants from 'constants'; // eslint-disable-line node/no-deprecated-api +import Link from 'component/link'; import firstRunStyle from 'styles/firstRun'; class WelcomePage extends React.PureComponent { @@ -106,6 +107,11 @@ class WelcomePage extends React.PureComponent { LBRY is a community-controlled content platform where you can find and publish videos, music, books, and more. + + By continuing, I agree to the{' '} + {' '} + and confirm I am over the age of 13. + ); } diff --git a/src/styles/firstRun.js b/src/styles/firstRun.js index 4f31353..29203d2 100644 --- a/src/styles/firstRun.js +++ b/src/styles/firstRun.js @@ -209,6 +209,12 @@ const firstRunStyle = StyleSheet.create({ revealIcon: { color: Colors.White, }, + tosLink: { + textDecorationLine: 'underline', + }, + tosParagraph: { + marginTop: 48, + }, }); export default firstRunStyle; diff --git a/src/styles/reward.js b/src/styles/reward.js index 932c367..d461539 100644 --- a/src/styles/reward.js +++ b/src/styles/reward.js @@ -249,8 +249,7 @@ const rewardStyle = StyleSheet.create({ }, learnMoreLink: { fontFamily: 'Inter-UI-Regular', - color: Colors.White, - textDecoration: 'underline', + color: Colors.NextLbryGreen, }, enrollButton: { backgroundColor: Colors.White,