2019-01-14 03:08:44 +00:00
|
|
|
// @flow
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import Card from '../Card';
|
|
|
|
|
import ShareButtons from '../ShareButtons';
|
|
|
|
|
import { CardContent, TopBorder } from './style';
|
|
|
|
|
import { SmallHeading, SmallSubheading } from '../Page/style';
|
|
|
|
|
|
|
|
|
|
const BottomShare = () => (
|
2019-01-14 03:51:27 +00:00
|
|
|
<Card style={{ width: '100%', marginTop: '48px' }}>
|
2019-01-14 03:08:44 +00:00
|
|
|
<TopBorder />
|
|
|
|
|
<CardContent>
|
|
|
|
|
<SmallHeading>Feeling more secure?</SmallHeading>
|
|
|
|
|
<SmallSubheading>
|
|
|
|
|
Spread the word about improving online privacy and security
|
|
|
|
|
</SmallSubheading>
|
|
|
|
|
<ShareButtons />
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
export default BottomShare;
|