-
Notifications
You must be signed in to change notification settings - Fork 0
/
component---src-pages-404-tsx-7d2ab05664f1281dcb99.js.map
1 lines (1 loc) · 1.87 KB
/
component---src-pages-404-tsx-7d2ab05664f1281dcb99.js.map
1
{"version":3,"file":"component---src-pages-404-tsx-7d2ab05664f1281dcb99.js","mappings":"uLAGA,MAAMA,EAAa,CACjBC,MAAO,UACPC,QAAS,OACTC,WAAY,4CAERC,EAAgB,CACpBC,UAAW,EACXC,aAAc,GACdC,SAAU,KAGNC,EAAkB,CACtBF,aAAc,IA+BhB,UArB0C,IAEtCG,EAAAA,cAAAA,OAAAA,CAAMC,MAAOV,GACXS,EAAAA,cAAAA,KAAAA,CAAIC,MAAON,GAAe,kBAC1BK,EAAAA,cAAAA,IAAAA,CAAGC,MAAOF,GAAiB,wDAEzB,2BAOI,KACJC,EAAAA,cAAAA,KAAAA,MACAA,EAAAA,cAACE,EAAAA,GAAI,CAACC,GAAG,KAAI,WAAc,MAQ5B,MAAMC,EAAe,IAAMJ,EAAAA,cAAAA,QAAAA,KAAO,Y","sources":["webpack://my-gatsby-site/./src/pages/404.tsx"],"sourcesContent":["import * as React from \"react\"\nimport { Link, HeadFC, PageProps } from \"gatsby\"\n\nconst pageStyles = {\n color: \"#232129\",\n padding: \"96px\",\n fontFamily: \"-apple-system, Roboto, sans-serif, serif\",\n}\nconst headingStyles = {\n marginTop: 0,\n marginBottom: 64,\n maxWidth: 320,\n}\n\nconst paragraphStyles = {\n marginBottom: 48,\n}\nconst codeStyles = {\n color: \"#8A6534\",\n padding: 4,\n backgroundColor: \"#FFF4DB\",\n fontSize: \"1.25rem\",\n borderRadius: 4,\n}\n\nconst NotFoundPage: React.FC<PageProps> = () => {\n return (\n <main style={pageStyles}>\n <h1 style={headingStyles}>Page not found</h1>\n <p style={paragraphStyles}>\n Sorry 😔, we couldn’t find what you were looking for.\n <br />\n {process.env.NODE_ENV === \"development\" ? (\n <>\n <br />\n Try creating a page in <code style={codeStyles}>src/pages/</code>.\n <br />\n </>\n ) : null}\n <br />\n <Link to=\"/\">Go home</Link>.\n </p>\n </main>\n )\n}\n\nexport default NotFoundPage\n\nexport const Head: HeadFC = () => <title>Not found</title>\n"],"names":["pageStyles","color","padding","fontFamily","headingStyles","marginTop","marginBottom","maxWidth","paragraphStyles","React","style","Link","to","Head"],"sourceRoot":""}