├── .eslintrc ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── config └── siteConfig.js ├── functions-src ├── contact.js └── spotify.js ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── netlify.toml ├── package.json ├── readme.md ├── src ├── components │ ├── Button.js │ ├── ContactForm.js │ ├── Container.js │ ├── Footer.js │ ├── Header.js │ ├── Hero.js │ ├── HomeAbout.js │ ├── HomeClients.js │ ├── HomeExp.js │ ├── HomeProjects.js │ ├── Layout.js │ ├── PageSEO.js │ ├── PostCard.js │ ├── PostCardGroup.js │ ├── Recent.js │ ├── SEO.js │ ├── Testimonials.js │ └── TextContent.js ├── html.js ├── images │ ├── bg.jpg │ ├── cm.jpg │ ├── down.png │ ├── icon-plus.png │ ├── icon-plus.svg │ ├── icon.png │ ├── loading copy 2.svg │ ├── loading copy.svg │ ├── loading.svg │ ├── logo-email.png │ ├── logo-grey.png │ ├── logo.png │ ├── social.jpg │ └── up.png ├── pages │ ├── 404.js │ ├── blog.js │ ├── contact.js │ └── index.js ├── styles │ ├── Animations.js │ ├── Global.js │ └── Theme.js ├── templates │ └── StandardBlog.js └── util │ ├── endpoints.js │ └── helpers.js ├── static └── _redirects └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/LICENSE -------------------------------------------------------------------------------- /config/siteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/config/siteConfig.js -------------------------------------------------------------------------------- /functions-src/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/functions-src/contact.js -------------------------------------------------------------------------------- /functions-src/spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/functions-src/spotify.js -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/readme.md -------------------------------------------------------------------------------- /src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/Button.js -------------------------------------------------------------------------------- /src/components/ContactForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/ContactForm.js -------------------------------------------------------------------------------- /src/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/Container.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/Hero.js -------------------------------------------------------------------------------- /src/components/HomeAbout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/HomeAbout.js -------------------------------------------------------------------------------- /src/components/HomeClients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/HomeClients.js -------------------------------------------------------------------------------- /src/components/HomeExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/HomeExp.js -------------------------------------------------------------------------------- /src/components/HomeProjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/HomeProjects.js -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/PageSEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/PageSEO.js -------------------------------------------------------------------------------- /src/components/PostCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/PostCard.js -------------------------------------------------------------------------------- /src/components/PostCardGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/PostCardGroup.js -------------------------------------------------------------------------------- /src/components/Recent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/Recent.js -------------------------------------------------------------------------------- /src/components/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/SEO.js -------------------------------------------------------------------------------- /src/components/Testimonials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/Testimonials.js -------------------------------------------------------------------------------- /src/components/TextContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/components/TextContent.js -------------------------------------------------------------------------------- /src/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/html.js -------------------------------------------------------------------------------- /src/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/bg.jpg -------------------------------------------------------------------------------- /src/images/cm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/cm.jpg -------------------------------------------------------------------------------- /src/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/down.png -------------------------------------------------------------------------------- /src/images/icon-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/icon-plus.png -------------------------------------------------------------------------------- /src/images/icon-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/icon-plus.svg -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/images/loading copy 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/loading copy 2.svg -------------------------------------------------------------------------------- /src/images/loading copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/loading copy.svg -------------------------------------------------------------------------------- /src/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/loading.svg -------------------------------------------------------------------------------- /src/images/logo-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/logo-email.png -------------------------------------------------------------------------------- /src/images/logo-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/logo-grey.png -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/images/social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/social.jpg -------------------------------------------------------------------------------- /src/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/images/up.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/pages/blog.js -------------------------------------------------------------------------------- /src/pages/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/pages/contact.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/styles/Animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/styles/Animations.js -------------------------------------------------------------------------------- /src/styles/Global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/styles/Global.js -------------------------------------------------------------------------------- /src/styles/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/styles/Theme.js -------------------------------------------------------------------------------- /src/templates/StandardBlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/templates/StandardBlog.js -------------------------------------------------------------------------------- /src/util/endpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/util/endpoints.js -------------------------------------------------------------------------------- /src/util/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/src/util/helpers.js -------------------------------------------------------------------------------- /static/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/static/_redirects -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brohlson/chaseohlson/HEAD/yarn.lock --------------------------------------------------------------------------------