File size: 1,632 Bytes
1e92f2d |
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
import React, { useEffect, useRef } from 'react';
import styled from 'styled-components';
import { srConfig, email } from '@config';
import sr from '@utils/sr';
import { usePrefersReducedMotion } from '@hooks';
const StyledContactSection = styled.section`
max-width: 600px;
margin: 0 auto 100px;
text-align: center;
@media (max-width: 768px) {
margin: 0 auto 50px;
}
.overline {
display: block;
margin-bottom: 20px;
color: var(--green);
font-family: var(--font-mono);
font-size: var(--fz-md);
font-weight: 400;
&:before {
bottom: 0;
font-size: var(--fz-sm);
}
&:after {
display: none;
}
}
.title {
font-size: clamp(40px, 5vw, 60px);
}
.email-link {
${({ theme }) => theme.mixins.bigButton};
margin-top: 50px;
}
`;
const Contact = () => {
const revealContainer = useRef(null);
const prefersReducedMotion = usePrefersReducedMotion();
useEffect(() => {
if (prefersReducedMotion) {
return;
}
sr.reveal(revealContainer.current, srConfig());
}, []);
return (
<StyledContactSection id="contact" ref={revealContainer}>
<h2 className="numbered-heading overline">What’s Next?</h2>
<h2 className="title">Get In Touch</h2>
<p>
Although I’m not currently looking for any new opportunities, my inbox is always open.
Whether you have a question or just want to say hi, I’ll try my best to get back to you!
</p>
<a className="email-link" href={`mailto:${email}`}>
Say Hello
</a>
</StyledContactSection>
);
};
export default Contact;
|