{"version":3,"file":"component---src-pages-404-tsx-e1a8d7e370431c1a0701.js","mappings":"2VAEaA,GAAaC,EAAAA,EAAAA,IAAH,0GACR,qBAAGC,MAAkBC,SAASC,aAC5B,qBAAGF,MAAkBG,WAAWC,SAEtC,qBAAGJ,MAAkBK,QAAQC,oBAG3BC,GAAcR,EAAAA,EAAAA,IAAH,sJACT,qBAAGC,MAAkBC,SAASO,mBAC5B,qBAAGR,MAAkBG,WAAWM,QAEtC,qBAAGT,MAAkBK,QAAQD,SAE7B,qBAAGJ,MAAkBU,QAAQC,UACvB,qBAAGX,MAAkBC,SAASW,oBAIlCC,GAAiBd,EAAAA,EAAAA,IAAH,qJAEZ,qBAAGC,MAAkBC,SAASa,SAC5B,qBAAGd,MAAkBG,WAAWM,QACtC,qBAAGT,MAAkBK,QAAQU,gBAE7B,qBAAGf,MAAkBU,QAAQC,UACvB,qBAAGX,MAAkBC,SAASO,mBAIlCQ,EAAUC,EAAAA,GAAAA,IAAH,8IAQPC,EAAQD,EAAAA,GAAAA,GAAH,+BACdV,GAGSY,EAAWF,EAAAA,GAAAA,GAAH,sGACjBJ,GAMSO,EAAOH,EAAAA,GAAAA,EAAH,uGACbnB,I,qJCvBJ,EAdwB,SAAC,GAA+B,IAA7BuB,EAA4B,EAA5BA,KACjBC,EAAwBD,EAAxBC,SAAUC,EAAcF,EAAdE,UAClB,OACE,gBAAC,KAAD,KACE,gBAAC,KAAD,YACA,gBAAC,KAAD,KAAWA,GACX,gBAAC,KAAD,KAAOD,GACP,gBAAC,EAAAE,KAAD,CAAMC,GAAIC,EAAAA,GAAAA,MACR,gBAACC,EAAA,EAAD,wBCQR,EArBqB,WACnB,IAAQC,GAAWC,EAAAA,EAAAA,gBAAe,cAA1BD,OAYR,OACE,gBAACE,EAAA,EAAD,CAAQC,gBAAiBA,EAAAA,GACvB,gBAACC,EAAA,EAAD,CAAKC,SAAUL,GAAU,KACzB,gBAAC,EAAD,CAAiBP,KAAMO,EAAOM,oB,qBCzBpC,IAAe,IAA0B","sources":["webpack://gatsby-starter-default/./src/components/404/styled.tsx","webpack://gatsby-starter-default/./src/components/404/404.tsx","webpack://gatsby-starter-default/./src/pages/404.tsx","webpack://gatsby-starter-default/./src/images/background/background.jpg"],"sourcesContent":["import styled, { css } from 'styles/styled';\n\nexport const textStyles = css`\n font-size: ${({ theme }) => theme.fontSize.smallBase};\n font-weight: ${({ theme }) => theme.fontWeight.light};\n letter-spacing: 0.14px;\n color: ${({ theme }) => theme.palette.lightDarkOpacity};\n`;\n\nexport const titleStyles = css`\n font-size: ${({ theme }) => theme.fontSize.titleDesktopBig};\n font-weight: ${({ theme }) => theme.fontWeight.bold};\n letter-spacing: 1.26px;\n color: ${({ theme }) => theme.palette.light};\n\n @media ${({ theme }) => theme.devices.medium} {\n font-size: ${({ theme }) => theme.fontSize.titleDesktopHuge};\n }\n`;\n\nexport const subtitleStyles = css`\n letter-spacing: 1.1px;\n font-size: ${({ theme }) => theme.fontSize.title};\n font-weight: ${({ theme }) => theme.fontWeight.bold};\n color: ${({ theme }) => theme.palette.lightOpacity};\n\n @media ${({ theme }) => theme.devices.medium} {\n font-size: ${({ theme }) => theme.fontSize.titleDesktopBig};\n }\n`;\n\nexport const Wrapper = styled.div`\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n min-height: 80vh;\n`;\n\nexport const Title = styled.h1`\n ${titleStyles};\n`;\n\nexport const Subtitle = styled.h2`\n ${subtitleStyles};\n padding-bottom: 0.5rem;\n text-align: center;\n max-width: 390px;\n`;\n\nexport const Text = styled.p`\n ${textStyles};\n text-align: center;\n margin-bottom: 1.875rem;\n max-width: 310px;\n`;\n","import React from 'react';\nimport { Link } from 'gatsby';\n\nimport { ROUTES } from 'constants/common';\n\nimport { Button } from 'components/UI/Button';\n\nimport { Wrapper, Text, Subtitle, Title } from './styled';\n\ninterface Props {\n pageText: string;\n pageTitle: string;\n}\n\nconst NotFoundContent = ({ data }: { data: Props }) => {\n const { pageText, pageTitle } = data;\n return (\n \n 404\n {pageTitle}\n {pageText}\n \n \n \n \n );\n};\n\nexport default NotFoundContent;\n","import React from 'react';\nimport { graphql, useStaticQuery } from 'gatsby';\n\nimport backgroundImage from 'images/background/background.jpg';\n\nimport SEO from 'components/SEO';\nimport Layout from 'components/Layout';\nimport NotFoundContent from 'components/404';\n\nconst NotFoundPage = () => {\n const { wpPage } = useStaticQuery(graphql`\n query {\n wpPage(title: { in: \"404\" }) {\n ...MetaData\n not_found_page {\n pageText\n pageTitle\n }\n }\n }\n `);\n\n return (\n \n \n \n \n );\n};\n\nexport default NotFoundPage;\n","export default __webpack_public_path__ + \"static/background-0c9f1d8886c2e25c7f7a2e6bf75d4f5b.jpg\";"],"names":["textStyles","css","theme","fontSize","smallBase","fontWeight","light","palette","lightDarkOpacity","titleStyles","titleDesktopBig","bold","devices","medium","titleDesktopHuge","subtitleStyles","title","lightOpacity","Wrapper","styled","Title","Subtitle","Text","data","pageText","pageTitle","Link","to","ROUTES","Button","wpPage","useStaticQuery","Layout","backgroundImage","SEO","metadata","not_found_page"],"sourceRoot":""}