File size: 1,086 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
// @flow
import * as React from 'react';
import { Footer, FooterGrid, Masthead, Safety } from '../style';
export default () => {
return (
<Footer>
<FooterGrid>
<Masthead>
<Safety>
<span>Safety</span>
<a
href="https://github.com/withspectrum/code-of-conduct"
target="_blank"
rel="noopener noreferrer"
>
Code of Conduct
</a>
<a
target="_blank"
rel="noopener noreferrer"
href={
'https://help.github.com/en/github/site-policy/github-privacy-statement'
}
>
Privacy Statement
</a>
<a
target="_blank"
rel="noopener noreferrer"
href={
'https://help.github.com/en/github/site-policy/github-terms-of-service'
}
>
Terms of Service
</a>
</Safety>
</Masthead>
</FooterGrid>
</Footer>
);
};
|