{"version":3,"file":"static/chunks/pages/404-e9930a2eee2bed72.js","mappings":"qFACA,CAAAA,OAAAC,QAAA,CAAAD,OAAAC,QAAA,MAAAC,IAAA,EACA,OACA,WACA,OAAeC,EAAQ,MACvB,EACA,mICNAC,EAAe,CAAC,0cAA6G,yDCItH,IAAMC,EAAqBC,CAAAA,EAAAA,EAAAA,EAAAA,EAAOC,EAAAA,EAASA,EAAAA,UAAAA,CAAAA,+KAQvCC,EAAAA,CAAWA,CAACC,MAAM,EAKhBC,EAAiBJ,EAAAA,EAAMA,CAACK,EAAE,CAAAC,UAAA,4HACtB,OAAC,CAAEC,MAAAA,CAAK,CAAE,CAAAC,SAAKD,EAAME,KAAK,CAACC,OAAO,EACpC,OAAC,CAAEH,MAAAA,CAAK,CAAE,CAAAC,SAAKD,EAAMI,SAAS,CAAC,MAAM,EAIzCT,EAAAA,CAAWA,CAACC,MAAM,CACZ,OAAC,CAAEI,MAAAA,CAAK,CAAE,CAAAC,SAAKD,EAAMI,SAAS,CAAC,MAAM,GAIzCC,EAAgBZ,EAAAA,EAAMA,CAACa,CAAC,CAAAP,UAAA,iHACtB,OAAC,CAAEC,MAAAA,CAAK,CAAE,CAAAC,SAAKD,EAAMI,SAAS,CAACG,EAAE,EACrC,OAAC,CAAEP,MAAAA,CAAK,CAAE,CAAAC,SAAKD,EAAMQ,MAAM,CAACC,OAAO,CAAC,IAAI,EAIxCd,EAAAA,CAAWA,CAACC,MAAM,CACZ,OAAC,CAAEI,MAAAA,CAAK,CAAE,CAAAC,SAAKD,EAAMI,SAAS,CAACM,EAAE,GAIrCC,EAAwBlB,EAAAA,EAAMA,CAACmB,MAAM,CAAAb,UAAA,oDCVlD,IAAAc,EAlB4B,IAC1B,GAAAC,EAAAC,IAAA,EAACvB,EAAkBA,WACjB,GAAAsB,EAAAE,GAAA,EAACL,EAAqBA,UACpB,GAAAG,EAAAE,GAAA,EAACC,IAAKA,CACJC,IAAKC,EACLC,IAAI,oBACJC,OAAO,QACPC,MAAO,IACPC,OAAQ,QAGZ,GAAAT,EAAAE,GAAA,EAACnB,EAAcA,UAAC,uCAChB,GAAAiB,EAAAE,GAAA,EAACX,EAAaA,UAAC","sources":["webpack://_N_E/?9cea","webpack://_N_E/./public/assets/neco_tangled.png","webpack://_N_E/./src/styles/pages/custom404.styles.tsx","webpack://_N_E/./src/pages/404.tsx","webpack://_N_E/"],"sourcesContent":["\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/404\",\n function () {\n return require(\"private-next-pages/404.tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/404\"])\n });\n }\n ","export default {\"src\":\"/_next/static/media/neco_tangled.488e6393.png\",\"height\":360,\"width\":361,\"blurDataURL\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAMAAADz0U65AAAAS1BMVEVMaXHahnzkjHQGP/X/8WzBoqfw3F/y5ITm2rP6s3P6+oj/8XDBg4z7qmTQio3yzGXfpHOFmbT//4L/1WfpuWdqlM/153PwwWv/7Gg79zJ9AAAAF3RSTlMA9PtLciv9AwYhPKUd04XP+oJMT/yVxP+g+C0AAAAJcEhZcwAACxMAAAsTAQCanBgAAAA8SURBVHicPcs3EoBAEMRAnZ1d3OHh/y+lCEBJR4IvATa8mLtPBXKLIcQxc9Z9vurdo3Is29oZkNK/SeIBMtIBjpHmKOoAAAAASUVORK5CYII=\",\"blurWidth\":8,\"blurHeight\":8};","import styled from \"styled-components\";\nimport { Container } from \"../common/container\";\nimport { breakpoints } from \"../constants/breakpoints\";\n\nexport const Custom404Container = styled(Container)`\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n text-align: center;\n padding: 30px;\n\n @media ${breakpoints.tablet} {\n padding: 100px 30px;\n }\n`;\n\nexport const Custom404Title = styled.h3`\n font-family: ${({ theme }) => theme.fonts.primary};\n font-size: ${({ theme }) => theme.fontSizes[\"2xl\"]};\n line-height: 1.25;\n margin: 16px 0;\n\n @media ${breakpoints.tablet} {\n font-size: ${({ theme }) => theme.fontSizes[\"3xl\"]};\n }\n`;\n\nexport const Custom404Desc = styled.p`\n font-size: ${({ theme }) => theme.fontSizes.md};\n color: ${({ theme }) => theme.colors.neutral[600]};\n line-height: 1.25;\n margin: 0;\n\n @media ${breakpoints.tablet} {\n font-size: ${({ theme }) => theme.fontSizes.xl};\n }\n`;\n\nexport const Custom404ImageWrapper = styled.figure`\n margin: 16px 0;\n`;\n","import React from \"react\";\nimport Image from \"next/legacy/image\";\nimport NecoTangled from \"public/assets/neco_tangled.png\";\n\nimport {\n Custom404Container,\n Custom404Desc,\n Custom404ImageWrapper,\n Custom404Title\n} from \"../styles/pages/custom404.styles\";\n\nconst Custom404: React.FC = () => (\n \n \n \n \n Yah, Neco nyangkut di halaman ini.\n \n Maaf ya, CoFriends. Halamannya nggak ketemu, nih.\n \n \n);\n\nexport default Custom404;\n"],"names":["window","__NEXT_P","push","__webpack_require__","neco_tangled","Custom404Container","styled","Container","breakpoints","tablet","Custom404Title","h3","withConfig","theme","param","fonts","primary","fontSizes","Custom404Desc","p","md","colors","neutral","xl","Custom404ImageWrapper","figure","_404","jsx_runtime","jsxs","jsx","Image","src","NecoTangled","alt","layout","width","height"],"sourceRoot":""}