diff --git a/Gulpfile.js b/Gulpfile.js index 593a648..009b0b5 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -24,5 +24,10 @@ function compileTS() { .pipe(gulp.dest(`${destDir}/js`)); } +function copyImages() { + return gulp.src(`${srcDir}/img/**/*.*`) + .pipe(gulp.dest(`${destDir}/img`)); +} + exports.default = compileSCSS; -exports.default = gulp.parallel(compileSCSS, compileTS); +exports.default = gulp.parallel(compileSCSS, compileTS, copyImages); diff --git a/src/img/favicon.png b/src/img/favicon.png new file mode 100644 index 0000000..334a762 Binary files /dev/null and b/src/img/favicon.png differ diff --git a/src/img/ob-256x256.png b/src/img/ob-256x256.png new file mode 100644 index 0000000..68ba371 Binary files /dev/null and b/src/img/ob-256x256.png differ diff --git a/src/img/oliverbooth-704x330.png b/src/img/oliverbooth-704x330.png new file mode 100644 index 0000000..86a4df5 Binary files /dev/null and b/src/img/oliverbooth-704x330.png differ diff --git a/src/img/projects/hero/birthday-1280x640.png b/src/img/projects/hero/birthday-1280x640.png new file mode 100644 index 0000000..c97c1be Binary files /dev/null and b/src/img/projects/hero/birthday-1280x640.png differ diff --git a/src/img/projects/hero/brackeysbot-1280x640.png b/src/img/projects/hero/brackeysbot-1280x640.png new file mode 100644 index 0000000..dfb62be Binary files /dev/null and b/src/img/projects/hero/brackeysbot-1280x640.png differ diff --git a/src/img/projects/hero/candyjam-1280x640.png b/src/img/projects/hero/candyjam-1280x640.png new file mode 100644 index 0000000..396dd8c Binary files /dev/null and b/src/img/projects/hero/candyjam-1280x640.png differ diff --git a/src/img/projects/hero/fiveoclock-1280x640.png b/src/img/projects/hero/fiveoclock-1280x640.png new file mode 100644 index 0000000..256c29d Binary files /dev/null and b/src/img/projects/hero/fiveoclock-1280x640.png differ diff --git a/src/img/projects/hero/mutation-1280x640.png b/src/img/projects/hero/mutation-1280x640.png new file mode 100644 index 0000000..b217a56 Binary files /dev/null and b/src/img/projects/hero/mutation-1280x640.png differ diff --git a/src/img/projects/hero/none-1280x640.png b/src/img/projects/hero/none-1280x640.png new file mode 100644 index 0000000..c838dbd Binary files /dev/null and b/src/img/projects/hero/none-1280x640.png differ diff --git a/src/img/projects/hero/olive-1280x640.png b/src/img/projects/hero/olive-1280x640.png new file mode 100644 index 0000000..84ddce5 Binary files /dev/null and b/src/img/projects/hero/olive-1280x640.png differ diff --git a/src/img/projects/hero/syntaxgen-1280x640.png b/src/img/projects/hero/syntaxgen-1280x640.png new file mode 100644 index 0000000..80a5738 Binary files /dev/null and b/src/img/projects/hero/syntaxgen-1280x640.png differ diff --git a/src/img/projects/hero/unitydocs-1280x640.png b/src/img/projects/hero/unitydocs-1280x640.png new file mode 100644 index 0000000..ab99654 Binary files /dev/null and b/src/img/projects/hero/unitydocs-1280x640.png differ diff --git a/src/img/projects/hero/x10d-1280x640.png b/src/img/projects/hero/x10d-1280x640.png new file mode 100644 index 0000000..76c7cc7 Binary files /dev/null and b/src/img/projects/hero/x10d-1280x640.png differ