forked from aravindballa/gatsby-theme-andy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Footer.js
29 lines (26 loc) · 882 Bytes
/
Footer.js
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
/** @jsx jsx */
import React from 'react';
import { Styled, jsx, Box } from 'theme-ui';
import ReferredBlock from './ReferredBlock';
const Footer = ({ references }) => {
return (
<Box p={3} sx={{ borderRadius: 2 }} mb={2} bg="accent" color="text-light">
<ReferredBlock references={references} />
<p sx={{ m: 0, fontSize: 1 }}>
If you think this note resonated, be it positive or negative, send me a{' '}
<Styled.a
sx={{ textDecoration: 'underline', color: 'text-light' }}
href="https://twitter.com/messages/compose?recipient_id="
>
direct message
</Styled.a>{' '}
on Twitter or an{' '}
<Styled.a sx={{ textDecoration: 'underline', color: 'text-light' }} href="#">
email
</Styled.a>{' '}
and we can talk.
</p>
</Box>
);
};
export default Footer;