File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import styled from 'styled-components';
4
4
import { StaticImage } from "gatsby-plugin-image" ;
5
5
6
6
import SiteBorderStyles from '../styles/SiteBorderStyles' ;
7
- import Footer from "./footer" ;
8
7
9
8
import { AiTwotoneMail , AiTwotonePhone } from 'react-icons/ai' ;
10
9
import { FiMapPin } from 'react-icons/fi'
@@ -47,7 +46,6 @@ export default function Contact() {
47
46
< ContactForm />
48
47
</ div >
49
48
</ SiteBorderStyles >
50
- < Footer />
51
49
< div
52
50
className = "absolute"
53
51
style = { { zIndex : `-1` , width : `50vw` , left : `0` , bottom : `5vh` } } >
@@ -63,6 +61,7 @@ export default function Contact() {
63
61
}
64
62
65
63
const ContactStyles = styled . section `
64
+ height: calc(100vh - 56px);
66
65
position: relative;
67
66
display: flex;
68
67
flex-direction: column;
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { FiGithub, FiLinkedin } from "react-icons/fi";
5
5
import { Trans } from "react-i18next" ;
6
6
7
7
const FooterStyle = styled . footer `
8
+ padding: 100px;
8
9
background: var(--black);
9
10
padding: 0.5rem 0;
10
11
color: var(--lightgrey);
@@ -15,7 +16,7 @@ export default function Footer() {
15
16
< FooterStyle >
16
17
< SiteBorderStyles >
17
18
{ /* social links*/ }
18
- < div className = "flex my-1 md:my-2 items-center justify-between md:justify-center md:text-xl " >
19
+ < div className = "flex my-1 md:my-2 items-center justify-between md:justify-center" >
19
20
< p className = "" style = { { color : `var(--lightgrey)` } } >
20
21
© { new Date ( ) . getFullYear ( ) } Coderbunker, inc.
21
22
</ p >
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import PropTypes from "prop-types";
3
3
import { useStaticQuery , graphql } from "gatsby" ;
4
4
import GlobalStyles from '../styles/GlobalStyles' ;
5
5
import Typography from '../styles/Typography' ;
6
+ import Footer from "./footer" ;
6
7
7
8
import Header from "./header" ;
8
9
@@ -23,6 +24,7 @@ export default function Layout({ children }) {
23
24
< GlobalStyles />
24
25
< Typography />
25
26
< main > { children } </ main >
27
+ < Footer />
26
28
</ >
27
29
)
28
30
}
You can’t perform that action at this time.
0 commit comments