├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── content ├── articles │ ├── 3d │ │ ├── getting-creative-with-3-d-printers-1184x360.jpg │ │ └── index.md │ ├── androids │ │ ├── index.md │ │ ├── robots-androids-and-cyborgs-oh-my-1184x360.jpg │ │ └── robots-androids-and-cyborgs-oh-my-535x535.jpg │ ├── factory │ │ ├── index.md │ │ └── the-real-story-behind-factory-automation-1184x360.jpg │ ├── goodai │ │ ├── index.md │ │ └── using-artificial-intelligence-to-do-good-1184x360.jpg │ └── recycling │ │ ├── index.md │ │ └── robotic-waste-recycling-1184x360.jpg ├── events │ ├── future │ │ ├── aeadc.yml │ │ ├── gatsbydays2020.yml │ │ └── reacteu2020.yml │ └── past │ │ ├── gatsbydays2019.yml │ │ └── reactconf2019.yml └── images │ ├── bubbles-disc.png │ ├── getting-creative-with-3-d-printers-1184x360.jpg │ └── robots-androids-and-cyborgs-oh-my-1184x360.jpg ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── postcss.config.js ├── src ├── components │ ├── event.js │ ├── event.module.css │ ├── footer.js │ ├── footer.module.css │ ├── header.js │ ├── header.module.css │ ├── layout.js │ ├── layout.module.css │ ├── mainnav.js │ ├── mainnav.module.css │ ├── pagination.js │ ├── pagination.module.css │ ├── robotimage.js │ └── seo.js ├── fonts │ ├── Amstelvar-Italic-VF.ttf │ ├── Amstelvar-Roman-VF.ttf │ ├── fonts.css │ └── recursive-MONO_CASL_wght_slnt_ital--full_gsub--2019_12_17-23_21--subset-GF_latin_basic.woff2 ├── pages │ ├── 404.js │ ├── about.js │ ├── about.module.css │ ├── events.js │ ├── events.module.css │ ├── index.js │ └── index.module.css ├── styles │ ├── accessibility.css │ ├── global.module.css │ └── reset.css └── templates │ ├── article.js │ ├── article.module.css │ ├── articles.js │ ├── articles.module.css │ └── subjects.js └── static ├── favicon.ico ├── icon.png ├── images ├── bubbles-callout.png ├── dolly-callout.png └── eileen-callout.png └── logo.svg /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/README.md -------------------------------------------------------------------------------- /content/articles/3d/getting-creative-with-3-d-printers-1184x360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/3d/getting-creative-with-3-d-printers-1184x360.jpg -------------------------------------------------------------------------------- /content/articles/3d/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/3d/index.md -------------------------------------------------------------------------------- /content/articles/androids/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/androids/index.md -------------------------------------------------------------------------------- /content/articles/androids/robots-androids-and-cyborgs-oh-my-1184x360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/androids/robots-androids-and-cyborgs-oh-my-1184x360.jpg -------------------------------------------------------------------------------- /content/articles/androids/robots-androids-and-cyborgs-oh-my-535x535.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/androids/robots-androids-and-cyborgs-oh-my-535x535.jpg -------------------------------------------------------------------------------- /content/articles/factory/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/factory/index.md -------------------------------------------------------------------------------- /content/articles/factory/the-real-story-behind-factory-automation-1184x360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/factory/the-real-story-behind-factory-automation-1184x360.jpg -------------------------------------------------------------------------------- /content/articles/goodai/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/goodai/index.md -------------------------------------------------------------------------------- /content/articles/goodai/using-artificial-intelligence-to-do-good-1184x360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/goodai/using-artificial-intelligence-to-do-good-1184x360.jpg -------------------------------------------------------------------------------- /content/articles/recycling/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/recycling/index.md -------------------------------------------------------------------------------- /content/articles/recycling/robotic-waste-recycling-1184x360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/articles/recycling/robotic-waste-recycling-1184x360.jpg -------------------------------------------------------------------------------- /content/events/future/aeadc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/events/future/aeadc.yml -------------------------------------------------------------------------------- /content/events/future/gatsbydays2020.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/events/future/gatsbydays2020.yml -------------------------------------------------------------------------------- /content/events/future/reacteu2020.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/events/future/reacteu2020.yml -------------------------------------------------------------------------------- /content/events/past/gatsbydays2019.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/events/past/gatsbydays2019.yml -------------------------------------------------------------------------------- /content/events/past/reactconf2019.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/events/past/reactconf2019.yml -------------------------------------------------------------------------------- /content/images/bubbles-disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/images/bubbles-disc.png -------------------------------------------------------------------------------- /content/images/getting-creative-with-3-d-printers-1184x360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/images/getting-creative-with-3-d-printers-1184x360.jpg -------------------------------------------------------------------------------- /content/images/robots-androids-and-cyborgs-oh-my-1184x360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/content/images/robots-androids-and-cyborgs-oh-my-1184x360.jpg -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/components/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/event.js -------------------------------------------------------------------------------- /src/components/event.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/event.module.css -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/footer.js -------------------------------------------------------------------------------- /src/components/footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/footer.module.css -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/header.module.css -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/layout.module.css -------------------------------------------------------------------------------- /src/components/mainnav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/mainnav.js -------------------------------------------------------------------------------- /src/components/mainnav.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/mainnav.module.css -------------------------------------------------------------------------------- /src/components/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/pagination.js -------------------------------------------------------------------------------- /src/components/pagination.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/pagination.module.css -------------------------------------------------------------------------------- /src/components/robotimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/robotimage.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/fonts/Amstelvar-Italic-VF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/fonts/Amstelvar-Italic-VF.ttf -------------------------------------------------------------------------------- /src/fonts/Amstelvar-Roman-VF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/fonts/Amstelvar-Roman-VF.ttf -------------------------------------------------------------------------------- /src/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/fonts/fonts.css -------------------------------------------------------------------------------- /src/fonts/recursive-MONO_CASL_wght_slnt_ital--full_gsub--2019_12_17-23_21--subset-GF_latin_basic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/fonts/recursive-MONO_CASL_wght_slnt_ital--full_gsub--2019_12_17-23_21--subset-GF_latin_basic.woff2 -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/about.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/pages/about.module.css -------------------------------------------------------------------------------- /src/pages/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/pages/events.js -------------------------------------------------------------------------------- /src/pages/events.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/pages/events.module.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/styles/accessibility.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/styles/accessibility.css -------------------------------------------------------------------------------- /src/styles/global.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/styles/global.module.css -------------------------------------------------------------------------------- /src/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/styles/reset.css -------------------------------------------------------------------------------- /src/templates/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/templates/article.js -------------------------------------------------------------------------------- /src/templates/article.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/templates/article.module.css -------------------------------------------------------------------------------- /src/templates/articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/templates/articles.js -------------------------------------------------------------------------------- /src/templates/articles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/templates/articles.module.css -------------------------------------------------------------------------------- /src/templates/subjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/src/templates/subjects.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/images/bubbles-callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/static/images/bubbles-callout.png -------------------------------------------------------------------------------- /static/images/dolly-callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/static/images/dolly-callout.png -------------------------------------------------------------------------------- /static/images/eileen-callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/static/images/eileen-callout.png -------------------------------------------------------------------------------- /static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-gatsby-2833047/HEAD/static/logo.svg --------------------------------------------------------------------------------