├── .github └── pull_request_template.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gatsby-config.js ├── package.json ├── repo_images ├── gatsby_develop_success.png └── readme_header.png ├── src ├── components │ ├── footer.js │ ├── form.js │ ├── header.js │ ├── layout.js │ └── vanta-animation.js ├── pages │ └── index.js └── style │ └── index.scss └── static ├── favicon.ico ├── img ├── arrow.png ├── bible-1920x1080.png ├── cloud-fallback-background.png ├── contributed-images │ ├── 8bitVectorizedBibleBreadyBackground.jpg │ ├── 8bitVectorizedBibleBreakfastBackground.jpg │ ├── 8bitVectorizedBibleColorfulBackground.jpg │ ├── ClipartBreadWithLogo.png │ ├── OnlyBible.png │ ├── RealisticBreadWithLogo.png │ ├── VectorBreadWithLogo.png │ ├── VectorizedBibleBreadyBackground.png │ ├── VectorizedBibleBreakfastBackground.png │ └── VectorizedBibleColorfulBackground.png ├── header-background.png ├── home.svg ├── line.png ├── logo-black.png └── logo.png ├── three.r119.min.js └── vanta.clouds.min.js /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/package.json -------------------------------------------------------------------------------- /repo_images/gatsby_develop_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/repo_images/gatsby_develop_success.png -------------------------------------------------------------------------------- /repo_images/readme_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/repo_images/readme_header.png -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/src/components/footer.js -------------------------------------------------------------------------------- /src/components/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/src/components/form.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/vanta-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/src/components/vanta-animation.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/src/style/index.scss -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/arrow.png -------------------------------------------------------------------------------- /static/img/bible-1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/bible-1920x1080.png -------------------------------------------------------------------------------- /static/img/cloud-fallback-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/cloud-fallback-background.png -------------------------------------------------------------------------------- /static/img/contributed-images/8bitVectorizedBibleBreadyBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/8bitVectorizedBibleBreadyBackground.jpg -------------------------------------------------------------------------------- /static/img/contributed-images/8bitVectorizedBibleBreakfastBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/8bitVectorizedBibleBreakfastBackground.jpg -------------------------------------------------------------------------------- /static/img/contributed-images/8bitVectorizedBibleColorfulBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/8bitVectorizedBibleColorfulBackground.jpg -------------------------------------------------------------------------------- /static/img/contributed-images/ClipartBreadWithLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/ClipartBreadWithLogo.png -------------------------------------------------------------------------------- /static/img/contributed-images/OnlyBible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/OnlyBible.png -------------------------------------------------------------------------------- /static/img/contributed-images/RealisticBreadWithLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/RealisticBreadWithLogo.png -------------------------------------------------------------------------------- /static/img/contributed-images/VectorBreadWithLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/VectorBreadWithLogo.png -------------------------------------------------------------------------------- /static/img/contributed-images/VectorizedBibleBreadyBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/VectorizedBibleBreadyBackground.png -------------------------------------------------------------------------------- /static/img/contributed-images/VectorizedBibleBreakfastBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/VectorizedBibleBreakfastBackground.png -------------------------------------------------------------------------------- /static/img/contributed-images/VectorizedBibleColorfulBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/contributed-images/VectorizedBibleColorfulBackground.png -------------------------------------------------------------------------------- /static/img/header-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/header-background.png -------------------------------------------------------------------------------- /static/img/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/home.svg -------------------------------------------------------------------------------- /static/img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/line.png -------------------------------------------------------------------------------- /static/img/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/logo-black.png -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/three.r119.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/three.r119.min.js -------------------------------------------------------------------------------- /static/vanta.clouds.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funbeedev/BibleBeforeBread/HEAD/static/vanta.clouds.min.js --------------------------------------------------------------------------------