diff --git a/.eleventy.js b/.eleventy.js index aaca2b8..ca3e87e 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -12,16 +12,16 @@ module.exports = function (eleventyConfig) { eleventyConfig.addPlugin(syntaxHighlight); // does not work with background images - // eleventyConfig.addPlugin(lazyImagesPlugin, { - // transformImgPath: (imgPath) => { - // if (imgPath.startsWith('http://') || imgPath.startsWith('https://')) { - // // Handle remote file - // return imgPath; - // } else { - // return `./src/${imgPath}`; - // } - // }, - // }); + eleventyConfig.addPlugin(lazyImagesPlugin, { + transformImgPath: (imgPath) => { + if (imgPath.startsWith('http://') || imgPath.startsWith('https://')) { + // Handle remote file + return imgPath; + } else { + return `./src/${imgPath}`; + } + }, + }); eleventyConfig.addPlugin(i18n, { translations, @@ -60,8 +60,8 @@ module.exports = function (eleventyConfig) { // }); eleventyConfig.addPassthroughCopy("styles/fonts"); - eleventyConfig.addPassthroughCopy("**/*.png"); - eleventyConfig.addPassthroughCopy("**/*.svg"); + eleventyConfig.addPassthroughCopy("src/assets/images/**/*.png"); + eleventyConfig.addPassthroughCopy("src/assets/images/**/*.svg"); eleventyConfig.addPassthroughCopy("node_modules/@glidejs/glide/dist"); eleventyConfig.addTransform('htmlmin', (content, outputPath) => { @@ -81,11 +81,10 @@ module.exports = function (eleventyConfig) { // Import fast-glob package const fg = require('fast-glob'); - // Run search for images in /gallery and /sponsors - const galleryImages = fg.sync(['**/images/screenshots/*', '!**/_site']); - console.log(galleryImages); + // Run search for images in /screenshots + const galleryImages = fg.sync(['**/images/screenshots/*resized*', '!**/_site']); - //Create collection of sponsor logos + //Create collection of screenshots eleventyConfig.addCollection('screenshots', function (collection) { return galleryImages.map(url => { return url.replace('src/', ''); diff --git a/src/_data/reviews.js b/src/_data/reviews.js new file mode 100644 index 0000000..9051641 --- /dev/null +++ b/src/_data/reviews.js @@ -0,0 +1,6 @@ +module.exports = [ + { name: 'Bob S', quote: 'Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium', stars: 3, site: 'Google Play', link: '' }, + { name: 'Phil C', quote: 'otam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt', stars: 3.5, site: 'App Store', link: '' }, + { name: 'Henk W', quote: 'Nam libero tempore, cum soluta nobis est eligendi optio, cumque nihil impedit, quo minus id', stars: 4, site: 'App Store', link: '' }, + { name: 'Jaap M', quote: 'Nemo enim ipsam voluptatem, quia voluptas sit, aspernatur aut odit aut fugit', stars: 5, site: 'Google Play', link: '' } + ] \ No newline at end of file diff --git a/src/_data/sections.js b/src/_data/sections.js index 1e7eff1..2e219a7 100644 --- a/src/_data/sections.js +++ b/src/_data/sections.js @@ -1,5 +1,4 @@ -module.exports = { - sections: [ +module.exports = [ { slug: 'home', name: 'Home' }, { slug: 'info', name: 'Info' }, { slug: 'screenshots', name: 'Screenshots' }, @@ -7,5 +6,4 @@ module.exports = { { slug: 'pricing', name: 'Pricing' }, { slug: 'download', name: 'Download' }, { slug: 'reviews', name: 'Reviews' } - ] -} \ No newline at end of file +] \ No newline at end of file diff --git a/src/_data/systems.js b/src/_data/systems.js new file mode 100644 index 0000000..2536a62 --- /dev/null +++ b/src/_data/systems.js @@ -0,0 +1,12 @@ +module.exports = [ + { slug: 'skeletal', name: 'Skeletal', status: 'free', order: 1 }, + { slug: 'ligamentous', name: 'Ligamentous', status: 'free', order: 1 }, + { slug: 'muscular', name: 'Muscular', status: 'pro', order: 1 }, + { slug: 'digestive', name: 'Digestive', status: 'pro', order: 1 }, + { slug: 'respiratory', name: 'Respiratory', status: 'pro', order: 1 }, + { slug: 'urogenital', name: 'Urogenital', status: 'pro', order: 1 }, + { slug: 'endocrine', name: 'Endocrine', status: 'pro', order: 1 }, + { slug: 'circulatory', name: 'Circulatory', status: 'soon', order: 1 }, + { slug: 'nervous', name: 'Nervous', status: 'soon', order: 1 }, + { slug: 'limphatic', name: 'Limphatic', status: 'soon', order: 1 } + ] \ No newline at end of file diff --git a/src/_includes/download.ejs b/src/_includes/download.ejs index 0266fbb..c04337d 100644 --- a/src/_includes/download.ejs +++ b/src/_includes/download.ejs @@ -70,12 +70,12 @@ border-radius: var(--r-1); background-color: var(--c-bkg); gap: 1rem; - border: 0.3rem solid var(--c-bkg); + border: 0.3rem solid transparent; transition: all 0.2s; } .platform__wrapper:hover { - border: 0.3rem solid orangered; + border-color: orangered; } .platform__wrapper:hover .btn--store { diff --git a/src/_includes/footer.ejs b/src/_includes/footer.ejs new file mode 100644 index 0000000..b0567bd --- /dev/null +++ b/src/_includes/footer.ejs @@ -0,0 +1,152 @@ + + + \ No newline at end of file diff --git a/src/_includes/hero.ejs b/src/_includes/hero.ejs index 9a5c80c..2553ed9 100644 --- a/src/_includes/hero.ejs +++ b/src/_includes/hero.ejs @@ -6,7 +6,7 @@ https://thumbs.gfycat.com/EthicalMagnificentHart-mobile.mp4
- + download now
@@ -35,6 +35,7 @@ margin-bottom: var(--offset); padding: 0 2rem; --weird-gap: 0.04rem; + z-index: 1; /* temp, to overlap slider */ } .hero__video { @@ -51,7 +52,7 @@ } .hero__banner h1 { - width: 16ch; + width: 15ch; } .banner-edge-left { diff --git a/src/_includes/layouts/base.ejs b/src/_includes/layouts/base.ejs index 03dfe83..ca7f7f0 100644 --- a/src/_includes/layouts/base.ejs +++ b/src/_includes/layouts/base.ejs @@ -5,15 +5,15 @@ - + + - + - + <%= site.title %> @@ -102,10 +102,8 @@ <%- content %> </main> - <footer class="text-center"> - Made with <span role="img" aria-label="Love">♥</span> by - <a href="https://creativedesignsguru.com">CreativeDesignsGuru</a> - </footer> + <% include /footer %> + </div> <script> @@ -126,14 +124,15 @@ <!-- <script src="/js/eleventy.js" type="module" async></script> --> <script> - new Glide('.glide').mount({ - type: 'carousel', - startAt: 0, - perView: 1, - autoplay: 1000, - bound: true, - rewind: false - }) + // new Glide('.glide').mount({ + // type: 'carousel', + // startAt: 0, + // perView: 1, + // autoplay: 1000, + // bound: true, + // rewind: false + // }) + // new Glide('.glide').mount() </script> @@ -185,10 +184,4 @@ align-items: center; } - footer { - background: black; - width: var(--viewportWidth); - margin-top: 2rem; - padding: 4rem 2rem 6rem 2rem; - } </style> \ No newline at end of file diff --git a/src/_includes/pricing.ejs b/src/_includes/pricing.ejs index 9d90169..be0aee5 100644 --- a/src/_includes/pricing.ejs +++ b/src/_includes/pricing.ejs @@ -44,7 +44,7 @@ </header> <div class="level__content"> <div class="level__price-wrapper"> - <h2 class="level__price"> + <h2 class="level__price" style="align-items: center;"> free <span> with paid add-ons @@ -90,9 +90,9 @@ <div class="level__price-wrapper"> <h2 class="level__price"> $9.95 - <span> - paid monthly - </span> + <span> + paid monthly + </span> </h2> </div> <ul> @@ -128,9 +128,9 @@ <div class="level__price-wrapper"> <h2 class="level__price"> $3.95 - <span> - paid monthly - </span> + <span> + paid monthly + </span> </h2> </div> <ul> @@ -166,9 +166,9 @@ <div class="level__price-wrapper"> <h2 class="level__price"> $39.95 - <span> - one time fee - </span> + <span> + one time fee + </span> </h2> </div> <ul> @@ -231,7 +231,7 @@ .level__content { border-radius: var(--r-1); background: var(--c-bkg); - padding: 2rem 1rem; + padding: 2rem 0; display: grid; grid-template-rows: 3rem auto; } @@ -259,16 +259,16 @@ text-align: center; } -.level__price-wrapper h2 { - display: inline-flex; + .level__price-wrapper h2 { + display: inline-flex; flex-direction: column; align-items: end; -} + } -.level__price-wrapper span { - font-size: 0.75rem; - font-family: Nunito, sans-serif; -} + .level__price-wrapper span { + font-size: 0.75rem; + font-family: Nunito, sans-serif; + } .level__wrapper .note { color: var(--c-bkg); @@ -279,12 +279,15 @@ } .level-wrapper--heading ul { - justify-items: start; + justify-items: end; align-items: center; } .level-wrapper--heading ul li { - color: black; + color: white; + font-weight: 600; + text-transform: uppercase; + text-align: right; font-size: 1rem; } diff --git a/src/_includes/screenshots.ejs b/src/_includes/screenshots.ejs index 05e4d1c..5fd1391 100644 --- a/src/_includes/screenshots.ejs +++ b/src/_includes/screenshots.ejs @@ -12,10 +12,12 @@ <div data-glide-el="track" class="glide__track"> <ul class="glide__slides"> <% collections.screenshots.forEach((screenshot, index)=> { %> - <li class="glide__slide"> - <img width="300" src="<%= screenshot %>" alt=""> - </li> - <% }) %> + <% if (screenshot.includes('--en')) { %> + <li class="glide__slide"> + <img src="<%= screenshot %>" alt=""> + </li> + <% } %> + <% }) %> </ul> </div> </div> @@ -23,11 +25,44 @@ </article> <style> - .glide__slide { - max-width: 10rem; + .glide { + overflow-x: scroll; + } + + .glide::-webkit-scrollbar { + width: 1rem; +} + +/* Track */ +.glide::-webkit-scrollbar-track { + background: transparent; +} + +/* Handle */ +.glide::-webkit-scrollbar-thumb { + background-color: var(--c-1); + border-radius: 999px; + transition: .2s all; +} + +/* Handle on hover */ +.glide::-webkit-scrollbar-thumb:hover { + background-color: orangered; +} + + .glide__slides { + display:flex; + flex-wrap: nowrap; + gap: 1rem; + padding-bottom: 2rem; + } + + .glide__slide img { + max-width: 12rem; } .glide__slide img { border-radius: 2rem; + pointer-events: none; } </style> \ No newline at end of file diff --git a/src/_includes/systems.ejs b/src/_includes/systems.ejs index 0161e9a..ec8ba4d 100644 --- a/src/_includes/systems.ejs +++ b/src/_includes/systems.ejs @@ -9,35 +9,53 @@ </header> <section> <ul class="system__list"> - <% systems.forEach((system)=> { %> - <li class="system--<%= system.status %>"> - <button onclick="zoom('<%= system.slug %>')"> - <img src="/assets/images/systems/icons/<%= system.slug %>.png" alt="<%= system.name %>" title="<%= system.name %>"> - </button> + <% systems.forEach((system, index)=> { %> + <li onclick="zoom('<%= system.slug %>')" + class="system system--<%= system.slug %> system--<%= system.status %> <%= index === 0 ? 'system--selected' : '' %>"> + <img src="/assets/images/systems/icons/<%= system.slug %>.png" alt="<%= system.name %>" + title="<%= system.name %>"> + <span> + <%= system.name %> + </span> </li> - <% }) %> + <% }) %> </ul> <div class="system__zoom-wrapper"> - <% systems.forEach((system)=> { %> - <img class="zoom__image zoom__image--<%= system.slug %>" src="/assets/images/systems/layers/<%= system.slug %>.png" alt="<%= system.name %>" title="<%= system.name %>"> - <% }) %> + <% systems.forEach((system, index)=> { %> + <img class="zoom__image zoom__image--<%= system.slug %> <%= index === 0 ? 'zoom__image--visible' : '' %>" + src="/assets/images/systems/layers/<%= system.slug %>.png" alt="<%= system.name %>" + title="<%= system.name %>"> + <% }) %> </div> </section> </article> <script> - function zoom (slug) { + function zoom(slug) { - const thisClass = 'zoom__image--' + slug; - let thisImage = document.querySelector('.' + thisClass); + const thisIconClass = 'system--' + slug; + let thisIconImage = document.querySelector('.' + thisIconClass); - thisImage.classList.add('zoom__image--visible') + thisIconImage.classList.add('system--selected') - let allImages = document.querySelectorAll('.zoom__image'); + let allIconImages = document.querySelectorAll('.system'); - for (let elem of allImages) { - if(!elem.classList.contains(thisClass)) { + for (let elem of allIconImages) { + if (!elem.classList.contains(thisIconClass)) { + elem.classList.remove('system--selected') + } + } + + const thisZoomClass = 'zoom__image--' + slug; + let thisZoomImage = document.querySelector('.' + thisZoomClass); + + thisZoomImage.classList.add('zoom__image--visible') + + let allZoomImages = document.querySelectorAll('.zoom__image'); + + for (let elem of allZoomImages) { + if (!elem.classList.contains(thisZoomClass)) { elem.classList.remove('zoom__image--visible') } } @@ -48,50 +66,85 @@ </script> <style> + .system__wrapper section { + display: grid; + grid-template-columns: 30rem auto; + } -.system__wrapper section { - display: grid; - grid-template-columns: 40rem auto; -} + .system__wrapper { + display: flex; + flex-direction: column; + } -.system__wrapper { - display: flex; - flex-direction: column; -} + .system__list { + display: flex; + flex-wrap: wrap; + gap: 1rem; + } -.system__list { - display: flex; - flex-wrap: wrap; - gap: 1rem; -} + .system__list li { + aspect-ratio: 1; + height: 9rem; + background-color: var(--c-1); + border-radius: var(--r-1); + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + border: 0.3rem solid transparent; + transition: all 0.2s; + cursor: pointer; + } -.system__list li { - aspect-ratio: 1; - height: 9rem; - background: var(--c-1); - border-radius: var(--r-1); -} + .system__list li:hover { + border-color: orangered; + } -.system__zoom-wrapper { - position: relative; -} + .system__list li:hover img, + .system__list li:hover span { + transform: scale(1.05); + } -li.system--soon { - background: lightgray; - color: gray; - pointer-events: none; -} + .system__list li img { + width: 4rem; + transition: all 0.2s; + } -.zoom__image { - position: absolute; - top: 0; - left: 0; - opacity: 0; - transition: opacity 0.2s; -} + .system__list li span { + color: var(--c-bkg); + transition: all 0.2s; + } -.zoom__image--visible { - opacity: 1; -} + .system__list li.system--selected { + background-color: orangered; + } + .system__zoom-wrapper { + position: relative; + background-color: var(--c-1); + padding: var(--p-1); + border-radius: var(--r-1); + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + } + + li.system--soon { + background: lightgray; + color: gray; + pointer-events: none; + } + + .zoom__image { + position: absolute; + top: 0; + left: 0; + opacity: 0; + transition: opacity 0.2s; + } + + .zoom__image--visible { + opacity: 1; + } </style> \ No newline at end of file diff --git a/src/assets/images/screenshots/1.png b/src/assets/images/screenshots/1.png deleted file mode 100644 index 9c87e9e..0000000 Binary files a/src/assets/images/screenshots/1.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.10.18.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.10.18.png deleted file mode 100644 index 0fded1f..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.10.18.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.13.19.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.13.19.png deleted file mode 100644 index 69f9793..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.13.19.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.14.09.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.14.09.png deleted file mode 100644 index 723de81..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.14.09.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.15.36.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.15.36.png deleted file mode 100644 index bb69380..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.15.36.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.17.27.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.17.27.png deleted file mode 100644 index 9c8e0b6..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.17.27.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.19.40.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.19.40.png deleted file mode 100644 index 5c9ffca..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.19.40.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.19.50.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.19.50.png deleted file mode 100644 index a88844c..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.19.50.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.20.10.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.20.10.png deleted file mode 100644 index 5748f37..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.20.10.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.20.35.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.20.35.png deleted file mode 100644 index 146095d..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.20.35.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.42.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.42.png deleted file mode 100644 index 2d1390c..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.42.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.49.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.49.png deleted file mode 100644 index db8cbc4..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.49.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.23.10.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.23.10.png deleted file mode 100644 index 2a48435..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.23.10.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.23.21.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.23.21.png deleted file mode 100644 index de0f299..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.23.21.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.28.42.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.28.42.png deleted file mode 100644 index 2952c92..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.28.42.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.28.51.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.28.51.png deleted file mode 100644 index 1953d5e..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.28.51.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.06.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.06.png deleted file mode 100644 index bd9fd28..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.06.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.12.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.12.png deleted file mode 100644 index 869fb3e..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.12.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.19.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.19.png deleted file mode 100644 index 6de24e5..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.19.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.28.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.28.png deleted file mode 100644 index 421e7dc..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.28.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.40.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.40.png deleted file mode 100644 index 5471ec9..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.30.40.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.32.23.png b/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.32.23.png deleted file mode 100644 index 1aac7ad..0000000 Binary files a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.32.23.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.15.53.png b/src/assets/images/screenshots/back--en.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.15.53.png rename to src/assets/images/screenshots/back--en.png diff --git a/src/assets/images/screenshots/back--en.resized.png b/src/assets/images/screenshots/back--en.resized.png new file mode 100644 index 0000000..b0484cb Binary files /dev/null and b/src/assets/images/screenshots/back--en.resized.png differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.16.05.png b/src/assets/images/screenshots/back--nl.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.16.05.png rename to src/assets/images/screenshots/back--nl.png diff --git a/src/assets/images/screenshots/back--nl.resized.png b/src/assets/images/screenshots/back--nl.resized.png new file mode 100644 index 0000000..62cad60 Binary files /dev/null and b/src/assets/images/screenshots/back--nl.resized.png differ diff --git a/src/assets/images/screenshots/br.svg b/src/assets/images/screenshots/br.svg deleted file mode 100644 index 47f0181..0000000 --- a/src/assets/images/screenshots/br.svg +++ /dev/null @@ -1,10 +0,0 @@ -<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_42:3)"> -<path d="M0 -50H-50V0V100H0V150C82.8427 150 150 82.8427 150 0H100V-50H0Z" stroke="white" stroke-width="100"/> -</g> -<defs> -<clipPath id="clip0_42:3"> -<rect width="100" height="100" fill="white"/> -</clipPath> -</defs> -</svg> diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.25.00.png b/src/assets/images/screenshots/guts--en.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.25.00.png rename to src/assets/images/screenshots/guts--en.png diff --git a/src/assets/images/screenshots/guts--en.resized.png b/src/assets/images/screenshots/guts--en.resized.png new file mode 100644 index 0000000..c7ba59c Binary files /dev/null and b/src/assets/images/screenshots/guts--en.resized.png differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.25.09.png b/src/assets/images/screenshots/guts--nl.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.25.09.png rename to src/assets/images/screenshots/guts--nl.png diff --git a/src/assets/images/screenshots/guts--nl.resized.png b/src/assets/images/screenshots/guts--nl.resized.png new file mode 100644 index 0000000..b7a3a35 Binary files /dev/null and b/src/assets/images/screenshots/guts--nl.resized.png differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.08.44.png b/src/assets/images/screenshots/hand--en.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.08.44.png rename to src/assets/images/screenshots/hand--en.png diff --git a/src/assets/images/screenshots/hand--en.resized.png b/src/assets/images/screenshots/hand--en.resized.png new file mode 100644 index 0000000..a66c159 Binary files /dev/null and b/src/assets/images/screenshots/hand--en.resized.png differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.10.07.png b/src/assets/images/screenshots/hand--nl.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.10.07.png rename to src/assets/images/screenshots/hand--nl.png diff --git a/src/assets/images/screenshots/hand--nl.resized.png b/src/assets/images/screenshots/hand--nl.resized.png new file mode 100644 index 0000000..495e097 Binary files /dev/null and b/src/assets/images/screenshots/hand--nl.resized.png differ diff --git a/src/assets/images/screenshots/head-torso--en.png b/src/assets/images/screenshots/head-torso--en.png new file mode 100644 index 0000000..e611819 Binary files /dev/null and b/src/assets/images/screenshots/head-torso--en.png differ diff --git a/src/assets/images/screenshots/head-torso--en.resized.png b/src/assets/images/screenshots/head-torso--en.resized.png new file mode 100644 index 0000000..e33b9dc Binary files /dev/null and b/src/assets/images/screenshots/head-torso--en.resized.png differ diff --git a/src/assets/images/screenshots/head-torso--nl.png b/src/assets/images/screenshots/head-torso--nl.png new file mode 100644 index 0000000..d7ff378 Binary files /dev/null and b/src/assets/images/screenshots/head-torso--nl.png differ diff --git a/src/assets/images/screenshots/head-torso--nl.resized.png b/src/assets/images/screenshots/head-torso--nl.resized.png new file mode 100644 index 0000000..70ac854 Binary files /dev/null and b/src/assets/images/screenshots/head-torso--nl.resized.png differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.18.19.png b/src/assets/images/screenshots/hips--en.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.18.19.png rename to src/assets/images/screenshots/hips--en.png diff --git a/src/assets/images/screenshots/hips--en.resized.png b/src/assets/images/screenshots/hips--en.resized.png new file mode 100644 index 0000000..4051984 Binary files /dev/null and b/src/assets/images/screenshots/hips--en.resized.png differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.17.03.png b/src/assets/images/screenshots/hips--nl.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.17.03.png rename to src/assets/images/screenshots/hips--nl.png diff --git a/src/assets/images/screenshots/hips--nl.resized.png b/src/assets/images/screenshots/hips--nl.resized.png new file mode 100644 index 0000000..8b25d28 Binary files /dev/null and b/src/assets/images/screenshots/hips--nl.resized.png differ diff --git a/src/assets/images/screenshots/mu.png b/src/assets/images/screenshots/mu.png deleted file mode 100644 index 17efeda..0000000 Binary files a/src/assets/images/screenshots/mu.png and /dev/null differ diff --git a/src/assets/images/screenshots/sk.png b/src/assets/images/screenshots/sk.png deleted file mode 100644 index 9c87e9e..0000000 Binary files a/src/assets/images/screenshots/sk.png and /dev/null differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.14.png b/src/assets/images/screenshots/torso--en.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.14.png rename to src/assets/images/screenshots/torso--en.png diff --git a/src/assets/images/screenshots/torso--en.resized.png b/src/assets/images/screenshots/torso--en.resized.png new file mode 100644 index 0000000..5839c9d Binary files /dev/null and b/src/assets/images/screenshots/torso--en.resized.png differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.24.png b/src/assets/images/screenshots/torso--nl.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.21.24.png rename to src/assets/images/screenshots/torso--nl.png diff --git a/src/assets/images/screenshots/torso--nl.resized.png b/src/assets/images/screenshots/torso--nl.resized.png new file mode 100644 index 0000000..d6fda26 Binary files /dev/null and b/src/assets/images/screenshots/torso--nl.resized.png differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.22.18.png b/src/assets/images/screenshots/torso-open--en.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.22.18.png rename to src/assets/images/screenshots/torso-open--en.png diff --git a/src/assets/images/screenshots/torso-open--en.resized.png b/src/assets/images/screenshots/torso-open--en.resized.png new file mode 100644 index 0000000..d7ed7da Binary files /dev/null and b/src/assets/images/screenshots/torso-open--en.resized.png differ diff --git a/src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.22.34.png b/src/assets/images/screenshots/torso-open--nl.png similarity index 100% rename from src/assets/images/screenshots/Simulator Screen Shot - iPhone 12 Pro Max - 2021-10-14 at 15.22.34.png rename to src/assets/images/screenshots/torso-open--nl.png diff --git a/src/assets/images/screenshots/torso-open--nl.resized.png b/src/assets/images/screenshots/torso-open--nl.resized.png new file mode 100644 index 0000000..b28b116 Binary files /dev/null and b/src/assets/images/screenshots/torso-open--nl.resized.png differ diff --git a/src/assets/images/screenshots/mu_shoulder_details_en.png b/src/assets/images/screenshots/trap--en.png similarity index 100% rename from src/assets/images/screenshots/mu_shoulder_details_en.png rename to src/assets/images/screenshots/trap--en.png diff --git a/src/assets/images/screenshots/trap--en.resized.png b/src/assets/images/screenshots/trap--en.resized.png new file mode 100644 index 0000000..a3fd2fa Binary files /dev/null and b/src/assets/images/screenshots/trap--en.resized.png differ diff --git a/src/assets/images/screenshots/mu_details_nl.png b/src/assets/images/screenshots/trap--nl.png similarity index 100% rename from src/assets/images/screenshots/mu_details_nl.png rename to src/assets/images/screenshots/trap--nl.png diff --git a/src/assets/images/screenshots/trap--nl.resized.png b/src/assets/images/screenshots/trap--nl.resized.png new file mode 100644 index 0000000..0247e41 Binary files /dev/null and b/src/assets/images/screenshots/trap--nl.resized.png differ diff --git a/src/assets/images/systems/icons/circulatory.png b/src/assets/images/systems/icons/circulatory.png new file mode 100644 index 0000000..39ca532 Binary files /dev/null and b/src/assets/images/systems/icons/circulatory.png differ diff --git a/src/assets/images/systems/icons/digestive.png b/src/assets/images/systems/icons/digestive.png new file mode 100644 index 0000000..400dadf Binary files /dev/null and b/src/assets/images/systems/icons/digestive.png differ diff --git a/src/assets/images/systems/icons/endocrine.png b/src/assets/images/systems/icons/endocrine.png new file mode 100644 index 0000000..81a4c8e Binary files /dev/null and b/src/assets/images/systems/icons/endocrine.png differ diff --git a/src/assets/images/systems/icons/ligamentous.png b/src/assets/images/systems/icons/ligamentous.png new file mode 100644 index 0000000..0ac0682 Binary files /dev/null and b/src/assets/images/systems/icons/ligamentous.png differ diff --git a/src/assets/images/systems/icons/muscular.png b/src/assets/images/systems/icons/muscular.png new file mode 100644 index 0000000..6ed4074 Binary files /dev/null and b/src/assets/images/systems/icons/muscular.png differ diff --git a/src/assets/images/systems/icons/respiratory.png b/src/assets/images/systems/icons/respiratory.png new file mode 100644 index 0000000..011a21a Binary files /dev/null and b/src/assets/images/systems/icons/respiratory.png differ diff --git a/src/assets/images/systems/icons/skeletal.png b/src/assets/images/systems/icons/skeletal.png new file mode 100644 index 0000000..44170df Binary files /dev/null and b/src/assets/images/systems/icons/skeletal.png differ diff --git a/src/assets/images/systems/icons/urogenital.png b/src/assets/images/systems/icons/urogenital.png new file mode 100644 index 0000000..c2d7466 Binary files /dev/null and b/src/assets/images/systems/icons/urogenital.png differ diff --git a/src/assets/images/systems/layers/circulatory.png b/src/assets/images/systems/layers/circulatory.png new file mode 100644 index 0000000..39ca532 Binary files /dev/null and b/src/assets/images/systems/layers/circulatory.png differ diff --git a/src/assets/images/systems/layers/digestive.png b/src/assets/images/systems/layers/digestive.png new file mode 100644 index 0000000..400dadf Binary files /dev/null and b/src/assets/images/systems/layers/digestive.png differ diff --git a/src/assets/images/systems/layers/endocrine.png b/src/assets/images/systems/layers/endocrine.png new file mode 100644 index 0000000..81a4c8e Binary files /dev/null and b/src/assets/images/systems/layers/endocrine.png differ diff --git a/src/assets/images/systems/layers/ligamentous.png b/src/assets/images/systems/layers/ligamentous.png new file mode 100644 index 0000000..0ac0682 Binary files /dev/null and b/src/assets/images/systems/layers/ligamentous.png differ diff --git a/src/assets/images/systems/layers/muscular.png b/src/assets/images/systems/layers/muscular.png new file mode 100644 index 0000000..6ed4074 Binary files /dev/null and b/src/assets/images/systems/layers/muscular.png differ diff --git a/src/assets/images/systems/layers/respiratory.png b/src/assets/images/systems/layers/respiratory.png new file mode 100644 index 0000000..011a21a Binary files /dev/null and b/src/assets/images/systems/layers/respiratory.png differ diff --git a/src/assets/images/systems/layers/skeletal.png b/src/assets/images/systems/layers/skeletal.png new file mode 100644 index 0000000..44170df Binary files /dev/null and b/src/assets/images/systems/layers/skeletal.png differ diff --git a/src/assets/images/systems/layers/urogenital.png b/src/assets/images/systems/layers/urogenital.png new file mode 100644 index 0000000..c2d7466 Binary files /dev/null and b/src/assets/images/systems/layers/urogenital.png differ diff --git a/src/index.ejs b/src/index.ejs index ce0e0db..72161a3 100644 --- a/src/index.ejs +++ b/src/index.ejs @@ -7,34 +7,6 @@ pagination: permalink: '<% if (pagination.pageNumber > 0) { %><%= `page${pagination.pageNumber + 1}/index.html` %><% } else { %>index.html<% } %>' eleventyComputed: title: '<% if (pagination.pageNumber > 0) { %><%= `Page ${pagination.pageNumber + 1} | ${site.title}` %><% } else { %><%= site.title %><% } %>' -links: [ { url: 'a', data: { title: 'b' } } ] -sections: [ - { slug: 'home', name: 'Home' }, - { slug: 'info', name: 'Info' }, - { slug: 'screenshots', name: 'Screenshots' }, - { slug: 'systems', name: 'Systems' }, - { slug: 'pricing', name: 'Pricing' }, - { slug: 'download', name: 'Download' }, - { slug: 'reviews', name: 'Reviews' } -] -systems: [ - { slug: 'skeletal', name: 'Skeletal', status: 'free', order: 1 }, - { slug: 'ligamentous', name: 'Ligamentous', status: 'free', order: 1 }, - { slug: 'muscular', name: 'Muscular', status: 'pro', order: 1 }, - { slug: 'digestive', name: 'Digestive', status: 'pro', order: 1 }, - { slug: 'respiratory', name: 'respiratory', status: 'pro', order: 1 }, - { slug: 'urogenital', name: 'Urogenital', status: 'pro', order: 1 }, - { slug: 'endocrine', name: 'Endocrine', status: 'pro', order: 1 }, - { slug: 'circulatory', name: 'Circulatory', status: 'soon', order: 1 }, - { slug: 'nervous', name: 'Nervous', status: 'soon', order: 1 }, - { slug: 'limphatic', name: 'Limphatic', status: 'soon', order: 1 } -] -reviews: [ - { name: 'Bob S', quote: 'Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium', stars: 3, site: 'Google Play', link: '' }, - { name: 'Phil C', quote: 'otam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt', stars: 3.5, site: 'App Store', link: '' }, - { name: 'Henk W', quote: 'Nam libero tempore, cum soluta nobis est eligendi optio, cumque nihil impedit, quo minus id', stars: 4, site: 'App Store', link: '' }, - { name: 'Jaap M', quote: 'Nemo enim ipsam voluptatem, quia voluptas sit, aspernatur aut odit aut fugit', stars: 5, site: 'Google Play', link: '' } -] --- <% include /hero %> @@ -59,34 +31,4 @@ reviews: [ </div> -<% include /reviews %> - -<!-- -<nav> - <% links.forEach((link) => { %> - <a href="<%= link.url %>"><%= link.data.title %></a> - <% }) %> -</nav> - -<ul> - <% list.forEach((post) => { %> - <li class="mb-3 flex justify-between"> - <a href="<%= post.url %>"><%= post.data.title %></a> - - <div><%= this.dateFns.format(new Date(post.data.date), 'LLLL d, yyyy') %></div> - </li> - <% }) %> -</ul> - -<div class="text-sm flex justify-between"> - <% if (pagination.previous) { %> - <div> - <a href="<%= pagination.previous.replace(/index.html$/, "") %>">← Newer Posts</a> - </div> - <% } %> <% if (pagination.next) { %> - <div class="text-right ml-auto"> - <a href="<%= pagination.next.replace(/index.html$/, "") %>">Older Posts →</a> - </div> - <% } %> -</div> ---> +<% include /reviews %> \ No newline at end of file