security-checklist/pages/index.js
2019-08-28 11:28:59 -04:00

33 lines
869 B
JavaScript

// @flow
import * as React from 'react';
import Page, { SectionHeading, Heading, Subheading } from '../components/Page';
import Checklist from '../components/Checklist';
import ShareButtons from '../components/ShareButtons';
import BottomShare from '../components/BottomShare';
class Index extends React.Component<{}> {
render() {
return (
<Page displayProgress>
<SectionHeading>
<Heading>Be safe on the internet.</Heading>
<Subheading>
An open source checklist of resources designed to improve your
online privacy and security. Check things off to keep track as you
go.
</Subheading>
</SectionHeading>
<div style={{ marginTop: '40px' }} />
<ShareButtons />
<Checklist />
<BottomShare />
</Page>
);
}
}
export default Index;