diff --git a/packages/web/src/shared/Button.3.tsx b/packages/web/src/shared/Button.3.tsx
index 0cf933e5881..b2867ba2125 100644
--- a/packages/web/src/shared/Button.3.tsx
+++ b/packages/web/src/shared/Button.3.tsx
@@ -45,6 +45,7 @@ type PrimaryProps = {
type InlineProps = {
kind: BTN.INLINE
+ style?: TextStyle
} & AllButtonProps
type NavProps = {
diff --git a/packages/web/src/shared/Footer.3.tsx b/packages/web/src/shared/Footer.3.tsx
index d476b00ac3c..a7e5edd7580 100644
--- a/packages/web/src/shared/Footer.3.tsx
+++ b/packages/web/src/shared/Footer.3.tsx
@@ -1,7 +1,8 @@
import Link from 'next/link'
import * as React from 'react'
import { StyleSheet, Text, View } from 'react-native'
-import { I18nProps, NameSpaces, withNamespaces } from 'src/i18n'
+import { I18nProps, NameSpaces, Trans, withNamespaces } from 'src/i18n'
+import Discord from 'src/icons/Discord'
import Discourse from 'src/icons/Discourse'
import MediumLogo from 'src/icons/MediumLogo'
import Octocat from 'src/icons/Octocat'
@@ -70,6 +71,11 @@ const Social = React.memo(function _Social() {
+
+
+
+
+
)
@@ -132,6 +138,13 @@ const Details = React.memo(function _Details({ t }: { t: I18nProps['t'] }) {
{t('disclaimer')}
+
+
+
+ Terms of Service
+
+
+
{t('copyRight')}
@@ -139,6 +152,10 @@ const Details = React.memo(function _Details({ t }: { t: I18nProps['t'] }) {
)
})
+function LinkButon({ children }) {
+ return
+}
+
const styles = StyleSheet.create({
social: {
flexDirection: 'row',
diff --git a/packages/web/src/shared/menu-items.ts b/packages/web/src/shared/menu-items.ts
index 04b35b67bc9..6417dd7f25a 100644
--- a/packages/web/src/shared/menu-items.ts
+++ b/packages/web/src/shared/menu-items.ts
@@ -31,6 +31,10 @@ export const menuItems = {
name: 'Privacy Policy',
link: '/privacy',
},
+ TERMS: {
+ name: 'Terms',
+ link: '/terms',
+ },
MEDIUM: {
name: 'Medium',
link: 'https://medium.com/@celo.org',
diff --git a/packages/web/static/locales/en/common.json b/packages/web/static/locales/en/common.json
index d16bf5bb077..75e5f075798 100644
--- a/packages/web/static/locales/en/common.json
+++ b/packages/web/static/locales/en/common.json
@@ -23,5 +23,6 @@
"cookiesAgree": "agree",
"cookiesDisagree": "disagree",
"trueGold": ["真金不怕火煉", "True gold fears no fire"],
- "copyRight": "Designed & Built by C Labs, © Celo 2019"
+ "copyRight": "Designed & Built by C Labs, © Celo 2019",
+ "footerReadMoreTerms": "Read more in <0>Celo Terms of Service0>"
}