mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
21 lines
597 B
JavaScript
21 lines
597 B
JavaScript
// @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 = () => (
|
|
<Card style={{ width: '100%', marginTop: '48px' }}>
|
|
<TopBorder />
|
|
<CardContent>
|
|
<SmallHeading>Feeling more secure?</SmallHeading>
|
|
<SmallSubheading>
|
|
Spread the word about improving online privacy and security
|
|
</SmallSubheading>
|
|
<ShareButtons />
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
|
|
export default BottomShare;
|