\n \n
Have a project?
\n \n Let{\"'\"}s get started!\n \n \n \n )\n}\n\nexport default HaveProject\n","require('./_typed-array')('Uint8', 1, function (init) {\n return function Uint8Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","import React from 'react'\nimport cn from 'classnames'\nimport { css } from '@emotion/core'\nimport styleConfig from 'config/styleConfig'\nimport styled from '@emotion/styled'\n\nconst MastHead = styled.div`\n display: flex;\n background: #000;\n flex-direction: column;\n justify-content: center;\n background-size: 100% 100%;\n background-position: bottom left;\n background-repeat: no-repeat;\n overflow: hidden;\n width: 100%;\n height: 350px;\n padding: 40px 0 0 0;\n ${styleConfig.breakPoints.lg} {\n padding: 80px 0 0 0;\n }\n &.largeMode {\n height: 400px;\n }\n ${styleConfig.breakPoints.lg} {\n padding: 30px 0 0 0;\n height: 300px;\n &.largeMode {\n height: 500px;\n }\n }\n position: relative;\n`\n\nconst MastHeadOverlay = styled.div`\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: #2a2d36;\n opacity: 0.4;\n`\ninterface IProps {\n largeMode?: boolean\n backgroundImage: string\n children: React.ReactNode\n}\n\nconst index = ({ largeMode = false, children, backgroundImage }: IProps): React.ReactElement => {\n return (\n