@@ -2,10 +2,11 @@ import * as React from "react"
2
2
import styled from 'styled-components' ;
3
3
import SiteBorderStyles from '../styles/SiteBorderStyles' ;
4
4
import { FiGithub , FiLinkedin } from "react-icons/fi" ;
5
+ import { Trans } from "react-i18next" ;
5
6
6
7
const FooterStyle = styled . footer `
7
8
background: var(--black);
8
- padding: 1rem 0;
9
+ padding: 0.5rem 0;
9
10
color: var(--lightgrey);
10
11
` ;
11
12
@@ -14,16 +15,24 @@ export default function Footer() {
14
15
< FooterStyle >
15
16
< SiteBorderStyles >
16
17
{ /* social links*/ }
17
- < div className = "flex my-1 md:my-2 items-center justify-center" >
18
- < a className = "inline-block md:hidden px-2" target = "_blank" rel = "noreferrer" href = "https://www.linkedin.com/company/coderbunker/" >
19
- < FiLinkedin className = "text-xl" style = { { color : `var(--lightgrey)` } } />
20
- </ a >
21
- < a className = "inline-block md:hidden px-2 mr-4" target = "_blank" rel = "noreferrer" href = "https://github.com/coderbunker" >
22
- < FiGithub className = "text-xl" style = { { color : `var(--lightgrey)` } } />
23
- </ a >
24
- < p className = "md:text-xl" style = { { color : `var(--lightgrey)` } } >
18
+ < div className = "flex my-1 md:my-2 items-center justify-between md:justify-center md:text-xl" >
19
+ < p className = "" style = { { color : `var(--lightgrey)` } } >
25
20
© { new Date ( ) . getFullYear ( ) } Coderbunker, inc.
26
21
</ p >
22
+ < p className = "hidden md:inline-block" style = { { color : `var(--lightgrey)` } } >
23
+ < span > | </ span >
24
+ < a target = "_blank" rel = "noreferrer" href = "https://github.com/coderbunker/coderbunker.ca" >
25
+ < Trans > Built with Gatsby</ Trans >
26
+ </ a >
27
+ </ p >
28
+ < div >
29
+ < a className = "inline-block md:hidden p-2 ml-6" target = "_blank" rel = "noreferrer" href = "https://www.linkedin.com/company/coderbunker/" >
30
+ < FiLinkedin className = "text-xl" style = { { color : `var(--lightgrey)` } } />
31
+ </ a >
32
+ < a className = "inline-block md:hidden p-2" target = "_blank" rel = "noreferrer" href = "https://github.com/coderbunker" >
33
+ < FiGithub className = "text-xl" style = { { color : `var(--lightgrey)` } } />
34
+ </ a >
35
+ </ div >
27
36
</ div >
28
37
</ SiteBorderStyles >
29
38
</ FooterStyle >
0 commit comments