-
Notifications
You must be signed in to change notification settings - Fork 0
/
component---src-pages-404-js-adfed60b82be529a4c41.js.map
1 lines (1 loc) · 1.78 KB
/
component---src-pages-404-js-adfed60b82be529a4c41.js.map
1
{"version":3,"sources":["webpack:///./src/components/layout.js","webpack:///./src/pages/404.js"],"names":["Layout","children","data","className","to","id","site","siteMetadata","title","NotFound","src","alt"],"mappings":"wLAIe,SAASA,EAAT,GAA+B,IAAbC,EAAY,EAAZA,SACvBC,EAAI,OAWV,OACE,yBAAKC,UAAU,aACb,kBAAC,OAAD,CAAMC,GAAE,KACN,wBAAIC,GAAG,cACJH,EAAKI,KAAKC,aAAaC,QAG3BP,K,qKCvBT,4GAKe,SAASQ,IACtB,OACE,kBAAC,IAAD,KACE,iCACE,6BAASJ,GAAG,SACV,uCACA,8FAAmE,kBAAC,OAAD,CAAMD,GAAG,KAAT,aAAnE,KACA,yBAAKM,IAAI,6DAA6DC,IAAI","file":"component---src-pages-404-js-adfed60b82be529a4c41.js","sourcesContent":["import React from \"react\"\nimport { graphql, useStaticQuery, Link } from \"gatsby\"\nimport \"../styles/global.scss\"\n\nexport default function Layout({ children }) {\n const data = useStaticQuery(\n graphql`\n query {\n site {\n siteMetadata {\n title\n }\n }\n }\n `\n )\n return (\n <div className=\"container\">\n <Link to={`/`}>\n <h1 id=\"site-title\">\n {data.site.siteMetadata.title}\n </h1>\n </Link>\n {children}\n </div>\n )\n }","import React from \"react\"\nimport Layout from \"../components/layout\"\nimport \"../styles/global.scss\"\nimport { Link } from \"gatsby\"\n\nexport default function NotFound() {\n return (\n <Layout>\n <article>\n <section id=\"intro\">\n <h2>Whoops.</h2>\n <p>Looks, like you're lost. You might want to mosey on over to the <Link to=\"/\">home page</Link>.</p>\n <img src=\"https://media.giphy.com/media/3o6Mbj3KnAvvgbMvJK/giphy.gif\" alt=\"Bart Simpson: 'Well, gotta mosey' in cowboy hat.\" />\n </section>\n </article>\n </Layout>\n )\n}\n\n"],"sourceRoot":""}