import React from 'react' import { Platform, Linking } from 'react-native' import AppPage from '../common/app-page' import AppText from '../common/app-text' import AppLink from '../common/AppLink' import Segment from '../common/segment' import Button from '../common/button' import ButtonRow from '../common/button-row' import links from '../../i18n/en/links' import { useTranslation } from 'react-i18next' const AboutSection = () => { const { t } = useTranslation(null, { keyPrefix: 'settings.about' }) return ( {t('intro.text')} {[links.email, links.gitlab, links.website].map((link) => ( ))} {t('philosophy.text')} {t('credits.text')}{' '} flaticon.{' '} {t('credits.madeBy')}{' '} smashicons,{' '} pause08,{' '} kazachek,{' '} freepik. {t('donate.text')} {Platform.OS !== 'ios' && ( )} {require('../../package.json').version} ) } export default AboutSection