Added about pages to react app
• Added: - about pages to react app - about, dmca, privacy policy, terms of service, terms of sale, investors
This commit is contained in:
62
app/javascript/gabsocial/features/about/investors.js
Normal file
62
app/javascript/gabsocial/features/about/investors.js
Normal file
@@ -0,0 +1,62 @@
|
||||
import Block from '../../components/block'
|
||||
import Button from '../../components/button'
|
||||
import Divider from '../../components/divider'
|
||||
import Heading from '../../components/heading'
|
||||
import Text from '../../components/text'
|
||||
|
||||
export default class Investors extends PureComponent {
|
||||
|
||||
render() {
|
||||
|
||||
return (
|
||||
<div className={[_s.default].join(' ')}>
|
||||
<Block>
|
||||
<div className={[_s.default, _s.heightMin50VH, _s.px15, _s.py15].join(' ')}>
|
||||
<Heading>Investors</Heading>
|
||||
<br />
|
||||
|
||||
<Text tagName='p' className={[_s.mt15, _s.mb15].join(' ')} size='medium'>
|
||||
<Button
|
||||
isText
|
||||
underlineOnHover
|
||||
color='brand'
|
||||
backgroundColor='none'
|
||||
className={_s.displayInline}
|
||||
href='https://www.sec.gov/Archives/edgar/data/1709244/000110465920067852/annual_report.pdf'
|
||||
>
|
||||
2019 Annual Report
|
||||
</Button>
|
||||
</Text>
|
||||
|
||||
<Text tagName='p' className={[_s.mt15, _s.mb15].join(' ')} size='medium'>
|
||||
<Button
|
||||
isText
|
||||
underlineOnHover
|
||||
color='brand'
|
||||
backgroundColor='none'
|
||||
className={_s.displayInline}
|
||||
href='https://www.sec.gov/Archives/edgar/data/1709244/000114420419021378/tv519744_annualreport.pdf'
|
||||
>
|
||||
2018 Annual Report
|
||||
</Button>
|
||||
</Text>
|
||||
|
||||
<Text tagName='p' className={[_s.mt15, _s.mb15].join(' ')} size='medium'>
|
||||
<Button
|
||||
isText
|
||||
underlineOnHover
|
||||
color='brand'
|
||||
backgroundColor='none'
|
||||
className={_s.displayInline}
|
||||
href='https://www.sec.gov/Archives/edgar/data/1709244/000170924418000001/GAB_-_Annual_Report_-_2018.pdf'
|
||||
>
|
||||
2017 Annual Report
|
||||
</Button>
|
||||
</Text>
|
||||
</div>
|
||||
</Block>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user