├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── components │ ├── common │ │ ├── ExternalLink.js │ │ ├── FaqItem │ │ │ ├── FaqItem.js │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Image.js │ │ ├── Layout │ │ │ ├── Layout.js │ │ │ └── index.js │ │ ├── Navbar │ │ │ ├── Navbar.js │ │ │ ├── index.js │ │ │ └── style.js │ │ └── SEO.js │ ├── global.js │ └── sections │ │ ├── About.js │ │ ├── Faq.js │ │ ├── Footer.js │ │ ├── Gallery.js │ │ ├── Header.js │ │ ├── Schedule.js │ │ └── Sponsors.js ├── images │ ├── devfolio-white.svg │ ├── gallery │ │ ├── darthvader.jpeg │ │ ├── r2d2.jpeg │ │ ├── stormtrooper.jpeg │ │ └── yoda.jpeg │ ├── misc │ │ └── gatsby-astronaut.png │ └── sponsors │ │ └── devfolio-logo.svg ├── pages │ ├── 404.js │ ├── index.js │ └── page-2.js └── styles │ ├── GlobalStyles.js │ ├── fonts.js │ └── theme.js ├── static ├── favicon.svg ├── fonts │ └── Montserrat-Bold.ttf └── icons │ ├── github.svg │ ├── instagram.svg │ ├── menu.svg │ ├── twitter.svg │ └── x.svg └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/components/common/ExternalLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/common/ExternalLink.js -------------------------------------------------------------------------------- /src/components/common/FaqItem/FaqItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/common/FaqItem/FaqItem.js -------------------------------------------------------------------------------- /src/components/common/FaqItem/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FaqItem'; 2 | -------------------------------------------------------------------------------- /src/components/common/FaqItem/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/common/FaqItem/style.js -------------------------------------------------------------------------------- /src/components/common/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/common/Image.js -------------------------------------------------------------------------------- /src/components/common/Layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/common/Layout/Layout.js -------------------------------------------------------------------------------- /src/components/common/Layout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Layout'; 2 | -------------------------------------------------------------------------------- /src/components/common/Navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/common/Navbar/Navbar.js -------------------------------------------------------------------------------- /src/components/common/Navbar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Navbar'; 2 | -------------------------------------------------------------------------------- /src/components/common/Navbar/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/common/Navbar/style.js -------------------------------------------------------------------------------- /src/components/common/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/common/SEO.js -------------------------------------------------------------------------------- /src/components/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/global.js -------------------------------------------------------------------------------- /src/components/sections/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/sections/About.js -------------------------------------------------------------------------------- /src/components/sections/Faq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/sections/Faq.js -------------------------------------------------------------------------------- /src/components/sections/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/sections/Footer.js -------------------------------------------------------------------------------- /src/components/sections/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/sections/Gallery.js -------------------------------------------------------------------------------- /src/components/sections/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/sections/Header.js -------------------------------------------------------------------------------- /src/components/sections/Schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/sections/Schedule.js -------------------------------------------------------------------------------- /src/components/sections/Sponsors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/components/sections/Sponsors.js -------------------------------------------------------------------------------- /src/images/devfolio-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/images/devfolio-white.svg -------------------------------------------------------------------------------- /src/images/gallery/darthvader.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/images/gallery/darthvader.jpeg -------------------------------------------------------------------------------- /src/images/gallery/r2d2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/images/gallery/r2d2.jpeg -------------------------------------------------------------------------------- /src/images/gallery/stormtrooper.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/images/gallery/stormtrooper.jpeg -------------------------------------------------------------------------------- /src/images/gallery/yoda.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/images/gallery/yoda.jpeg -------------------------------------------------------------------------------- /src/images/misc/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/images/misc/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/images/sponsors/devfolio-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/images/sponsors/devfolio-logo.svg -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/page-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/pages/page-2.js -------------------------------------------------------------------------------- /src/styles/GlobalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/styles/GlobalStyles.js -------------------------------------------------------------------------------- /src/styles/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/styles/fonts.js -------------------------------------------------------------------------------- /src/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/src/styles/theme.js -------------------------------------------------------------------------------- /static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/static/favicon.svg -------------------------------------------------------------------------------- /static/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/static/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /static/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/static/icons/github.svg -------------------------------------------------------------------------------- /static/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/static/icons/instagram.svg -------------------------------------------------------------------------------- /static/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/static/icons/menu.svg -------------------------------------------------------------------------------- /static/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/static/icons/twitter.svg -------------------------------------------------------------------------------- /static/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/static/icons/x.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfolioco/devfolio-gatsby-starter/HEAD/yarn.lock --------------------------------------------------------------------------------