import React from 'react' import { Linking } from 'react-native' import AppPage from '../common/app-page' import AppText from '../common/app-text' import Segment from '../common/segment' import Button from '../common/button' import ButtonRow from '../common/button-row' import labels from '../../i18n/en/settings' import links from '../../i18n/en/links' const AboutSection = () => { return ( {labels.aboutSection.text} {[links.email, links.gitlab, links.website].map((link) => ( ))} {labels.philosophy.text} {labels.credits.note} {labels.donate.note} {require('../../package.json').version} ) } export default AboutSection