2022-10-04 18:13:23 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Column from 'flavours/glitch/components/column';
|
|
|
|
import LinkFooter from 'flavours/glitch/features/ui/components/link_footer';
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'column.about', defaultMessage: 'About' },
|
|
|
|
});
|
|
|
|
|
|
|
|
export default @injectIntl
|
|
|
|
class About extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { intl } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LinkFooter />
|
|
|
|
|
|
|
|
<Helmet>
|
2022-10-09 04:08:37 +00:00
|
|
|
<title>{intl.formatMessage(messages.title)}</title>
|
2022-10-04 18:13:23 +00:00
|
|
|
</Helmet>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|