├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── HELP.md ├── README.md ├── _config.yml ├── how_to_build_an_ecommerce_website_from_scratch.md ├── images └── spring_error_page.png ├── landing_page_service.png ├── landing_page_service_tasked.png ├── lessons.md ├── mvnw ├── mvnw.cmd ├── one_pager.md ├── pom.xml ├── src ├── main │ ├── appengine │ │ └── app.yaml │ ├── java │ │ └── com │ │ │ └── fullstackclouddeveloper │ │ │ └── landingpageservice │ │ │ └── LandingPageServiceApplication.java │ └── resources │ │ └── static │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ ├── landing-page.css │ │ └── landing-page.min.css │ │ ├── gulpfile.js │ │ ├── img │ │ ├── bg-coding.jpg │ │ ├── bg-masthead.jpg │ │ ├── bg-showcase-1.jpg │ │ ├── bg-showcase-2.jpg │ │ ├── bg-showcase-3.jpg │ │ ├── testimonials-1.jpg │ │ ├── testimonials-2.jpg │ │ └── testimonials-3.jpg │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── scss │ │ ├── _call-to-action.scss │ │ ├── _footer.scss │ │ ├── _global.scss │ │ ├── _icons.scss │ │ ├── _masthead.scss │ │ ├── _mixins.scss │ │ ├── _showcase.scss │ │ ├── _testimonials.scss │ │ ├── _variables.scss │ │ └── landing-page.scss │ │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── fontawesome-free │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ │ └── simple-line-icons │ │ ├── css │ │ └── simple-line-icons.css │ │ └── fonts │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ └── Simple-Line-Icons.woff2 └── test │ └── java │ └── com │ └── fullstackclouddeveloper │ └── landingpageservice │ └── LandingPageServiceApplicationTests.java └── task_list.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/HELP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/_config.yml -------------------------------------------------------------------------------- /how_to_build_an_ecommerce_website_from_scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/how_to_build_an_ecommerce_website_from_scratch.md -------------------------------------------------------------------------------- /images/spring_error_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/images/spring_error_page.png -------------------------------------------------------------------------------- /landing_page_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/landing_page_service.png -------------------------------------------------------------------------------- /landing_page_service_tasked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/landing_page_service_tasked.png -------------------------------------------------------------------------------- /lessons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/lessons.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /one_pager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/one_pager.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/appengine/app.yaml -------------------------------------------------------------------------------- /src/main/java/com/fullstackclouddeveloper/landingpageservice/LandingPageServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/java/com/fullstackclouddeveloper/landingpageservice/LandingPageServiceApplication.java -------------------------------------------------------------------------------- /src/main/resources/static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/LICENSE -------------------------------------------------------------------------------- /src/main/resources/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/README.md -------------------------------------------------------------------------------- /src/main/resources/static/css/landing-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/css/landing-page.css -------------------------------------------------------------------------------- /src/main/resources/static/css/landing-page.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/css/landing-page.min.css -------------------------------------------------------------------------------- /src/main/resources/static/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/gulpfile.js -------------------------------------------------------------------------------- /src/main/resources/static/img/bg-coding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/img/bg-coding.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/bg-masthead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/img/bg-masthead.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/bg-showcase-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/img/bg-showcase-1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/bg-showcase-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/img/bg-showcase-2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/bg-showcase-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/img/bg-showcase-3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/testimonials-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/img/testimonials-1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/testimonials-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/img/testimonials-2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/testimonials-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/img/testimonials-3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/index.html -------------------------------------------------------------------------------- /src/main/resources/static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/package-lock.json -------------------------------------------------------------------------------- /src/main/resources/static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/package.json -------------------------------------------------------------------------------- /src/main/resources/static/scss/_call-to-action.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/_call-to-action.scss -------------------------------------------------------------------------------- /src/main/resources/static/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/_footer.scss -------------------------------------------------------------------------------- /src/main/resources/static/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/_global.scss -------------------------------------------------------------------------------- /src/main/resources/static/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/_icons.scss -------------------------------------------------------------------------------- /src/main/resources/static/scss/_masthead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/_masthead.scss -------------------------------------------------------------------------------- /src/main/resources/static/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/_mixins.scss -------------------------------------------------------------------------------- /src/main/resources/static/scss/_showcase.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/_showcase.scss -------------------------------------------------------------------------------- /src/main/resources/static/scss/_testimonials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/_testimonials.scss -------------------------------------------------------------------------------- /src/main/resources/static/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/_variables.scss -------------------------------------------------------------------------------- /src/main/resources/static/scss/landing-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/scss/landing-page.scss -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/fontawesome.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/fontawesome.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/svg-with-js.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/svg-with-js.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/jquery/jquery.slim.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /src/main/resources/static/vendor/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /src/main/resources/static/vendor/simple-line-icons/css/simple-line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/simple-line-icons/css/simple-line-icons.css -------------------------------------------------------------------------------- /src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/main/resources/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /src/test/java/com/fullstackclouddeveloper/landingpageservice/LandingPageServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/src/test/java/com/fullstackclouddeveloper/landingpageservice/LandingPageServiceApplicationTests.java -------------------------------------------------------------------------------- /task_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigspotteddog/landing-page-service/HEAD/task_list.md --------------------------------------------------------------------------------