diff --git a/.eleventy.js b/.eleventy.js
index 4be7f12..ca8442d 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -68,6 +68,8 @@ module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy('src/assets/images/**/*.png');
eleventyConfig.addPassthroughCopy('src/assets/images/**/*.svg');
eleventyConfig.addPassthroughCopy('src/assets/images/**/*.jpg');
+ eleventyConfig.addPassthroughCopy('src/assets/images/**/*.mp4');
+ eleventyConfig.addPassthroughCopy('src/assets/images/**/*.webm');
eleventyConfig.addPassthroughCopy('node_modules/@glidejs/glide/dist');
eleventyConfig.addPassthroughCopy('node_modules/blueimp-md5/js');
diff --git a/.prettierrc b/.prettierrc
index 5ac85e2..e6654d8 100644
--- a/.prettierrc
+++ b/.prettierrc
@@ -1,4 +1,4 @@
{
"printWidth": 100,
- "singleQuote": true
+ "singleQuote": true
}
diff --git a/README.md b/README.md
index 8b9fbf0..c4f1ba6 100644
--- a/README.md
+++ b/README.md
@@ -74,6 +74,8 @@ description: 'xyz'
---
```
+## new line
+Just add \ at the end of line.
# Project structure
diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png
index c036501..86ef52a 100644
Binary files a/public/apple-touch-icon.png and b/public/apple-touch-icon.png differ
diff --git a/public/assets/images/logo-32x32.png b/public/assets/images/logo-32x32.png
index 13a7c4b..95ba828 100644
Binary files a/public/assets/images/logo-32x32.png and b/public/assets/images/logo-32x32.png differ
diff --git a/public/assets/images/logo.png b/public/assets/images/logo.png
index 057ca5e..84a87a3 100644
Binary files a/public/assets/images/logo.png and b/public/assets/images/logo.png differ
diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png
index 01d7abf..875d718 100644
Binary files a/public/favicon-16x16.png and b/public/favicon-16x16.png differ
diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png
index 13a7c4b..95ba828 100644
Binary files a/public/favicon-32x32.png and b/public/favicon-32x32.png differ
diff --git a/public/favicon.ico b/public/favicon.ico
index 42b311b..84900f6 100644
Binary files a/public/favicon.ico and b/public/favicon.ico differ
diff --git a/src/_data/reviews.js b/src/_data/reviews.js
index ac6022d..76e79da 100644
--- a/src/_data/reviews.js
+++ b/src/_data/reviews.js
@@ -1,23 +1,26 @@
module.exports = [
{
- name: 'Andre Taris',
- quote: 'I am a designer and researcher and as part of TU Delft’s medical design major you get to do a surgical level anatomy class at Erasmus hospital. A world first and leader in this type of collab this involved full dissection training of us medical designers and common procedure run throughs. Laparoscopic training and this is more thorough than most doctors gets hands on. This app aids at that level',
+ name: 'Mathijs Hendricks',
+ quote:
+ "I've tried other anatomy apps, but they were all too complex and expensive. This app, on the other hand, is affordable and straightforward. I love how easy it is to navigate and learn from.",
stars: 5,
site: 'App Store',
- link: ''
+ link: '',
},
{
- name: 'Anthony Horsley',
- quote: 'I\'m homeschooled and this is awesome!',
+ name: 'David Miller',
+ quote:
+ "I use this app on a daily basis in my practice as a physical therapist. It's a great resource that helps me educate my patients and provide better care. Highly recommend!",
stars: 5,
site: 'App Store',
- link: ''
+ link: '',
},
{
- name: 'Tom van Vugt',
- quote: 'As a physical therapist this is one of the better apps out there for learning human anatomy, I tried multiple, but this one is easy to use and runs smoothly with lots of options.',
+ name: 'Christopher Lowe',
+ quote:
+ 'As someone who struggles with traditional textbook learning, this app has been a game-changer for my anatomy studies. The interactive features make it easy to visualize and understand complex concepts, which has saved me a lot of time and frustration.',
stars: 5,
site: 'App Store',
- link: ''
- }
-]
\ No newline at end of file
+ link: '',
+ },
+];
diff --git a/src/_data/site.json b/src/_data/site.json
index 4668c4f..0855c61 100644
--- a/src/_data/site.json
+++ b/src/_data/site.json
@@ -1,7 +1,7 @@
{
"site_name": "Visual Anatomy 3D",
"title": "Visual Anatomy 3D",
- "description": "Learn human anatomy quickly and easily by zooming, panning, hiding layers and interacting in real time.",
+ "description": "Learn human anatomy quickly and easily in 3D by zooming, panning, hiding layers and interacting in real time.",
"url": "https://visualanatomy3d.app/",
"locale": "en",
"author": "Spencer Flagg"
diff --git a/src/_data/systems.js b/src/_data/systems.js
index 3a3f99f..a0ed441 100644
--- a/src/_data/systems.js
+++ b/src/_data/systems.js
@@ -1,13 +1,38 @@
module.exports = [
- { slug: 'skeletal', name: 'Skeletal', status: 'free', order: 1 },
- { slug: 'ligamentous', name: 'Ligamentous', status: 'free', order: 2 },
- { slug: 'muscular', name: 'Muscular', status: 'pro', order: 3 },
- { slug: 'digestive', name: 'Digestive', status: 'pro', order: 4 },
- { slug: 'respiratory', name: 'Respiratory', status: 'pro', order: 5 },
- { slug: 'urogenital', name: 'Urogenital', status: 'pro', order: 6 },
- { slug: 'endocrine', name: 'Endocrine', status: 'pro', order: 7 },
- { slug: 'circulatory', name: 'Circulatory', status: 'soon', order: 8 },
- { slug: 'nervous', name: 'Nervous', status: 'soon', order: 9 },
- { slug: 'lymphatic', name: 'Lymphatic', status: 'soon', order: 10 },
- { slug: 'integumentary', name: 'Integumentary', status: 'soon', order: 11 }
-]
\ No newline at end of file
+ {
+ slug: 'skeletal', name: 'Skeletal', status: 'free', order: 1,
+ },
+ {
+ slug: 'ligamentous', name: 'Ligamentous', status: 'free', order: 2,
+ },
+ {
+ slug: 'muscular', name: 'Muscular', status: 'pro', order: 3,
+ },
+ {
+ slug: 'digestive', name: 'Digestive', status: 'pro', order: 4,
+ },
+ {
+ slug: 'respiratory', name: 'Respiratory', status: 'pro', order: 5,
+ },
+ {
+ slug: 'urogenital', name: 'Urogenital', status: 'pro', order: 6,
+ },
+ {
+ slug: 'endocrine', name: 'Endocrine', status: 'pro', order: 7,
+ },
+ {
+ slug: 'Arterial', name: 'Arterial', status: 'soon', order: 8,
+ },
+ {
+ slug: 'Venous', name: 'Venous', status: 'soon', order: 9,
+ },
+ {
+ slug: 'nervous', name: 'Nervous', status: 'soon', order: 10,
+ },
+ {
+ slug: 'lymphatic', name: 'Lymphatic', status: 'soon', order: 11,
+ },
+ {
+ slug: 'integumentary', name: 'Integumentary', status: 'soon', order: 12,
+ },
+];
diff --git a/src/_includes/contact.ejs b/src/_includes/contact.ejs
index 0fdaa24..99fc09b 100644
--- a/src/_includes/contact.ejs
+++ b/src/_includes/contact.ejs
@@ -20,6 +20,6 @@
Something went wrong. Try us on Twitter instead.Thanks! We'll contact you shortly.
-
+
diff --git a/src/_includes/hero.ejs b/src/_includes/hero.ejs
index 815146c..4082a0c 100644
--- a/src/_includes/hero.ejs
+++ b/src/_includes/hero.ejs
@@ -1,10 +1,10 @@
<% include /nav %>
-
-
+
+
+
+
\ No newline at end of file
diff --git a/src/_includes/system-icons/arterial.svg b/src/_includes/system-icons/arterial.svg
new file mode 100644
index 0000000..6b1e40f
--- /dev/null
+++ b/src/_includes/system-icons/arterial.svg
@@ -0,0 +1,46 @@
+
+
diff --git a/src/_includes/system-icons/venous.svg b/src/_includes/system-icons/venous.svg
new file mode 100644
index 0000000..6b1e40f
--- /dev/null
+++ b/src/_includes/system-icons/venous.svg
@@ -0,0 +1,46 @@
+
+
diff --git a/src/assets/images/01.mp4 b/src/assets/images/01.mp4
deleted file mode 100644
index 22c39d8..0000000
Binary files a/src/assets/images/01.mp4 and /dev/null differ
diff --git a/src/assets/images/contact.png b/src/assets/images/contact.png
index f5a0a46..f4c6772 100644
Binary files a/src/assets/images/contact.png and b/src/assets/images/contact.png differ
diff --git a/src/assets/images/favicon.png b/src/assets/images/favicon.png
index 6bbada3..bc5352a 100644
Binary files a/src/assets/images/favicon.png and b/src/assets/images/favicon.png differ
diff --git a/src/assets/images/hero.mp4 b/src/assets/images/hero.mp4
new file mode 100644
index 0000000..23961c7
Binary files /dev/null and b/src/assets/images/hero.mp4 differ
diff --git a/src/assets/images/hero.png b/src/assets/images/hero.png
index 5e67a2d..205ee5f 100644
Binary files a/src/assets/images/hero.png and b/src/assets/images/hero.png differ
diff --git a/src/assets/images/hero.webm b/src/assets/images/hero.webm
new file mode 100644
index 0000000..528db88
Binary files /dev/null and b/src/assets/images/hero.webm differ
diff --git a/src/assets/images/logo-orig.png b/src/assets/images/logo-orig.png
index 617dccb..ba042c2 100644
Binary files a/src/assets/images/logo-orig.png and b/src/assets/images/logo-orig.png differ
diff --git a/src/assets/images/posts/001.jpg b/src/assets/images/posts/001.jpg
deleted file mode 100644
index b10d18e..0000000
Binary files a/src/assets/images/posts/001.jpg and /dev/null differ
diff --git a/src/assets/images/posts/002.jpg b/src/assets/images/posts/002.jpg
deleted file mode 100644
index ff844c1..0000000
Binary files a/src/assets/images/posts/002.jpg and /dev/null differ
diff --git a/src/assets/images/posts/003.jpg b/src/assets/images/posts/003.jpg
deleted file mode 100644
index f367b45..0000000
Binary files a/src/assets/images/posts/003.jpg and /dev/null differ
diff --git a/src/assets/images/posts/004.jpg b/src/assets/images/posts/004.jpg
deleted file mode 100644
index 2f8cd9c..0000000
Binary files a/src/assets/images/posts/004.jpg and /dev/null differ
diff --git a/src/assets/images/posts/5FactsAboutHumanCirculatorySystem/humanCirculatorySystem3D_visualAnatomy3DApp.jpg b/src/assets/images/posts/5FactsAboutHumanCirculatorySystem/humanCirculatorySystem3D_visualAnatomy3DApp.jpg
index d5347e7..e360600 100644
Binary files a/src/assets/images/posts/5FactsAboutHumanCirculatorySystem/humanCirculatorySystem3D_visualAnatomy3DApp.jpg and b/src/assets/images/posts/5FactsAboutHumanCirculatorySystem/humanCirculatorySystem3D_visualAnatomy3DApp.jpg differ
diff --git a/src/assets/images/posts/5FactsAboutHumanCirculatorySystem/humanCirculatorySystem3D_visualAnatomy3DApp2.jpg b/src/assets/images/posts/5FactsAboutHumanCirculatorySystem/humanCirculatorySystem3D_visualAnatomy3DApp2.jpg
new file mode 100644
index 0000000..d5347e7
Binary files /dev/null and b/src/assets/images/posts/5FactsAboutHumanCirculatorySystem/humanCirculatorySystem3D_visualAnatomy3DApp2.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_adductorAbductorMusclesAnatomicalTerms.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_adductorAbductorMusclesAnatomicalTerms.jpg
new file mode 100644
index 0000000..a00e6ff
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_adductorAbductorMusclesAnatomicalTerms.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_anatomicalTermsForMusclesHero.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_anatomicalTermsForMusclesHero.jpg
new file mode 100644
index 0000000..e209a0b
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_anatomicalTermsForMusclesHero.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_anatomicalTermsForMusclesHero2.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_anatomicalTermsForMusclesHero2.jpg
new file mode 100644
index 0000000..f8bb437
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_anatomicalTermsForMusclesHero2.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_anteriorPosteriorMuscleAnatomicalTerms.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_anteriorPosteriorMuscleAnatomicalTerms.jpg
new file mode 100644
index 0000000..abca9b0
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_anteriorPosteriorMuscleAnatomicalTerms.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_digitorumProfundusSuperficialisMuscleAnatomicalTerms.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_digitorumProfundusSuperficialisMuscleAnatomicalTerms.jpg
new file mode 100644
index 0000000..b67f9af
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_digitorumProfundusSuperficialisMuscleAnatomicalTerms.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_flexorExtensorCarpiRadialisMuscleAnatomicalTerms.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_flexorExtensorCarpiRadialisMuscleAnatomicalTerms.jpg
new file mode 100644
index 0000000..020e957
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_flexorExtensorCarpiRadialisMuscleAnatomicalTerms.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_levatorDepressorMusclesAnatomicalTerms.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_levatorDepressorMusclesAnatomicalTerms.jpg
new file mode 100644
index 0000000..427ca22
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_levatorDepressorMusclesAnatomicalTerms.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_pronatorRectorMuscleAnatomicalTerms.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_pronatorRectorMuscleAnatomicalTerms.jpg
new file mode 100644
index 0000000..2a06f3a
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_pronatorRectorMuscleAnatomicalTerms.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_sizeMaximusMInimusMuscleAnatomicalTerms.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_sizeMaximusMInimusMuscleAnatomicalTerms.jpg
new file mode 100644
index 0000000..2768675
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_sizeMaximusMInimusMuscleAnatomicalTerms.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_superiorInferiorMuscleAnatomicalTerms.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_superiorInferiorMuscleAnatomicalTerms.jpg
new file mode 100644
index 0000000..a0302d2
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_superiorInferiorMuscleAnatomicalTerms.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_vastusMedialisLateralisMuscleAnatomicalTerms.jpg b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_vastusMedialisLateralisMuscleAnatomicalTerms.jpg
new file mode 100644
index 0000000..fb2c4b9
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/humanAnatomy3DApp_vastusMedialisLateralisMuscleAnatomicalTerms.jpg differ
diff --git a/src/assets/images/posts/basicAnatomicalMuscularTerms/template.psd b/src/assets/images/posts/basicAnatomicalMuscularTerms/template.psd
new file mode 100644
index 0000000..c732729
Binary files /dev/null and b/src/assets/images/posts/basicAnatomicalMuscularTerms/template.psd differ
diff --git a/src/assets/images/posts/boobs/001.jpg b/src/assets/images/posts/boobs/001.jpg
deleted file mode 100644
index b10d18e..0000000
Binary files a/src/assets/images/posts/boobs/001.jpg and /dev/null differ
diff --git a/src/assets/images/screenshots/01-head-torso--en.png b/src/assets/images/screenshots/01-head-torso--en.png
deleted file mode 100644
index e611819..0000000
Binary files a/src/assets/images/screenshots/01-head-torso--en.png and /dev/null differ
diff --git a/src/assets/images/screenshots/01-head-torso--en.resized.png b/src/assets/images/screenshots/01-head-torso--en.resized.png
deleted file mode 100644
index e33b9dc..0000000
Binary files a/src/assets/images/screenshots/01-head-torso--en.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/01-head-torso--nl.png b/src/assets/images/screenshots/01-head-torso--nl.png
deleted file mode 100644
index d7ff378..0000000
Binary files a/src/assets/images/screenshots/01-head-torso--nl.png and /dev/null differ
diff --git a/src/assets/images/screenshots/01-head-torso--nl.resized.png b/src/assets/images/screenshots/01-head-torso--nl.resized.png
deleted file mode 100644
index 70ac854..0000000
Binary files a/src/assets/images/screenshots/01-head-torso--nl.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--en.png b/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--en.png
new file mode 100644
index 0000000..1e1f5b5
Binary files /dev/null and b/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--en.png differ
diff --git a/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--en.resized.png b/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--en.resized.png
new file mode 100644
index 0000000..5221cdd
Binary files /dev/null and b/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--en.resized.png differ
diff --git a/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--nl.png b/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--nl.png
new file mode 100644
index 0000000..c73b1dc
Binary files /dev/null and b/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--nl.png differ
diff --git a/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--nl.resized.png b/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--nl.resized.png
new file mode 100644
index 0000000..f1aea0b
Binary files /dev/null and b/src/assets/images/screenshots/01-visualAnatomy3DApp_musculatureSystem--nl.resized.png differ
diff --git a/src/assets/images/screenshots/02-torso--en.png b/src/assets/images/screenshots/02-torso--en.png
deleted file mode 100644
index ebb79ad..0000000
Binary files a/src/assets/images/screenshots/02-torso--en.png and /dev/null differ
diff --git a/src/assets/images/screenshots/02-torso--en.resized.png b/src/assets/images/screenshots/02-torso--en.resized.png
deleted file mode 100644
index 5839c9d..0000000
Binary files a/src/assets/images/screenshots/02-torso--en.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/02-torso--nl.png b/src/assets/images/screenshots/02-torso--nl.png
deleted file mode 100644
index a71847a..0000000
Binary files a/src/assets/images/screenshots/02-torso--nl.png and /dev/null differ
diff --git a/src/assets/images/screenshots/02-torso--nl.resized.png b/src/assets/images/screenshots/02-torso--nl.resized.png
deleted file mode 100644
index d6fda26..0000000
Binary files a/src/assets/images/screenshots/02-torso--nl.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--en.png b/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--en.png
new file mode 100644
index 0000000..96b20de
Binary files /dev/null and b/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--en.png differ
diff --git a/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--en.resized.png b/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--en.resized.png
new file mode 100644
index 0000000..7afa1f2
Binary files /dev/null and b/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--en.resized.png differ
diff --git a/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--nl.png b/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--nl.png
new file mode 100644
index 0000000..b70e508
Binary files /dev/null and b/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--nl.png differ
diff --git a/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--nl.resized.png b/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--nl.resized.png
new file mode 100644
index 0000000..81a0663
Binary files /dev/null and b/src/assets/images/screenshots/02-visualAnatomy3DApp_screenshot--nl.resized.png differ
diff --git a/src/assets/images/screenshots/03-hips--en.png b/src/assets/images/screenshots/03-hips--en.png
deleted file mode 100644
index 9918e11..0000000
Binary files a/src/assets/images/screenshots/03-hips--en.png and /dev/null differ
diff --git a/src/assets/images/screenshots/03-hips--en.resized.png b/src/assets/images/screenshots/03-hips--en.resized.png
deleted file mode 100644
index 4051984..0000000
Binary files a/src/assets/images/screenshots/03-hips--en.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/03-hips--nl.png b/src/assets/images/screenshots/03-hips--nl.png
deleted file mode 100644
index 8ae2a89..0000000
Binary files a/src/assets/images/screenshots/03-hips--nl.png and /dev/null differ
diff --git a/src/assets/images/screenshots/03-hips--nl.resized.png b/src/assets/images/screenshots/03-hips--nl.resized.png
deleted file mode 100644
index 8b25d28..0000000
Binary files a/src/assets/images/screenshots/03-hips--nl.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--en.png b/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--en.png
new file mode 100644
index 0000000..92253cc
Binary files /dev/null and b/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--en.png differ
diff --git a/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--en.resized.png b/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--en.resized.png
new file mode 100644
index 0000000..ac7f5e7
Binary files /dev/null and b/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--en.resized.png differ
diff --git a/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--nl.png b/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--nl.png
new file mode 100644
index 0000000..844bfdf
Binary files /dev/null and b/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--nl.png differ
diff --git a/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--nl.resized.png b/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--nl.resized.png
new file mode 100644
index 0000000..ea042ba
Binary files /dev/null and b/src/assets/images/screenshots/03-visualAnatomy3DApp_screenshot--nl.resized.png differ
diff --git a/src/assets/images/screenshots/04-trap--en.png b/src/assets/images/screenshots/04-trap--en.png
deleted file mode 100644
index 6aca2e6..0000000
Binary files a/src/assets/images/screenshots/04-trap--en.png and /dev/null differ
diff --git a/src/assets/images/screenshots/04-trap--en.resized.png b/src/assets/images/screenshots/04-trap--en.resized.png
deleted file mode 100644
index a3fd2fa..0000000
Binary files a/src/assets/images/screenshots/04-trap--en.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/04-trap--nl.png b/src/assets/images/screenshots/04-trap--nl.png
deleted file mode 100644
index d093d8a..0000000
Binary files a/src/assets/images/screenshots/04-trap--nl.png and /dev/null differ
diff --git a/src/assets/images/screenshots/04-trap--nl.resized.png b/src/assets/images/screenshots/04-trap--nl.resized.png
deleted file mode 100644
index 0247e41..0000000
Binary files a/src/assets/images/screenshots/04-trap--nl.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--en.png b/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--en.png
new file mode 100644
index 0000000..f3e6b44
Binary files /dev/null and b/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--en.png differ
diff --git a/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--en.resized.png b/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--en.resized.png
new file mode 100644
index 0000000..cd81e57
Binary files /dev/null and b/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--en.resized.png differ
diff --git a/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--nl.png b/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--nl.png
new file mode 100644
index 0000000..7178574
Binary files /dev/null and b/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--nl.png differ
diff --git a/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--nl.resized.png b/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--nl.resized.png
new file mode 100644
index 0000000..74ba90a
Binary files /dev/null and b/src/assets/images/screenshots/04-visualAnatomy3DApp_screenshot--nl.resized.png differ
diff --git a/src/assets/images/screenshots/05-guts--en.png b/src/assets/images/screenshots/05-guts--en.png
deleted file mode 100644
index ee45d0d..0000000
Binary files a/src/assets/images/screenshots/05-guts--en.png and /dev/null differ
diff --git a/src/assets/images/screenshots/05-guts--en.resized.png b/src/assets/images/screenshots/05-guts--en.resized.png
deleted file mode 100644
index c7ba59c..0000000
Binary files a/src/assets/images/screenshots/05-guts--en.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/05-guts--nl.png b/src/assets/images/screenshots/05-guts--nl.png
deleted file mode 100644
index d028d67..0000000
Binary files a/src/assets/images/screenshots/05-guts--nl.png and /dev/null differ
diff --git a/src/assets/images/screenshots/05-guts--nl.resized.png b/src/assets/images/screenshots/05-guts--nl.resized.png
deleted file mode 100644
index b7a3a35..0000000
Binary files a/src/assets/images/screenshots/05-guts--nl.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--en.png b/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--en.png
new file mode 100644
index 0000000..77e3f0a
Binary files /dev/null and b/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--en.png differ
diff --git a/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--en.resized.png b/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--en.resized.png
new file mode 100644
index 0000000..1b8fc6a
Binary files /dev/null and b/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--en.resized.png differ
diff --git a/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--nl.png b/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--nl.png
new file mode 100644
index 0000000..dd3e511
Binary files /dev/null and b/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--nl.png differ
diff --git a/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--nl.resized.png b/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--nl.resized.png
new file mode 100644
index 0000000..1f721b7
Binary files /dev/null and b/src/assets/images/screenshots/05-visualAnatomy3DApp_screenshot--nl.resized.png differ
diff --git a/src/assets/images/screenshots/06-torso-open--en.png b/src/assets/images/screenshots/06-torso-open--en.png
deleted file mode 100644
index 742f6e6..0000000
Binary files a/src/assets/images/screenshots/06-torso-open--en.png and /dev/null differ
diff --git a/src/assets/images/screenshots/06-torso-open--en.resized.png b/src/assets/images/screenshots/06-torso-open--en.resized.png
deleted file mode 100644
index d7ed7da..0000000
Binary files a/src/assets/images/screenshots/06-torso-open--en.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/06-torso-open--nl.png b/src/assets/images/screenshots/06-torso-open--nl.png
deleted file mode 100644
index 3c309f3..0000000
Binary files a/src/assets/images/screenshots/06-torso-open--nl.png and /dev/null differ
diff --git a/src/assets/images/screenshots/06-torso-open--nl.resized.png b/src/assets/images/screenshots/06-torso-open--nl.resized.png
deleted file mode 100644
index b28b116..0000000
Binary files a/src/assets/images/screenshots/06-torso-open--nl.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--en.png b/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--en.png
new file mode 100644
index 0000000..4c2533f
Binary files /dev/null and b/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--en.png differ
diff --git a/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--en.resized.png b/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--en.resized.png
new file mode 100644
index 0000000..24d60be
Binary files /dev/null and b/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--en.resized.png differ
diff --git a/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--nl.png b/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--nl.png
new file mode 100644
index 0000000..52edf0a
Binary files /dev/null and b/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--nl.png differ
diff --git a/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--nl.resized.png b/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--nl.resized.png
new file mode 100644
index 0000000..a74297d
Binary files /dev/null and b/src/assets/images/screenshots/06-visualAnatomy3DApp_screenshot--nl.resized.png differ
diff --git a/src/assets/images/screenshots/07-back--en.png b/src/assets/images/screenshots/07-back--en.png
deleted file mode 100644
index 1908551..0000000
Binary files a/src/assets/images/screenshots/07-back--en.png and /dev/null differ
diff --git a/src/assets/images/screenshots/07-back--en.resized.png b/src/assets/images/screenshots/07-back--en.resized.png
deleted file mode 100644
index b0484cb..0000000
Binary files a/src/assets/images/screenshots/07-back--en.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/07-back--nl.png b/src/assets/images/screenshots/07-back--nl.png
deleted file mode 100644
index 3bc2c77..0000000
Binary files a/src/assets/images/screenshots/07-back--nl.png and /dev/null differ
diff --git a/src/assets/images/screenshots/07-back--nl.resized.png b/src/assets/images/screenshots/07-back--nl.resized.png
deleted file mode 100644
index 62cad60..0000000
Binary files a/src/assets/images/screenshots/07-back--nl.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--en.png b/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--en.png
new file mode 100644
index 0000000..b380a2d
Binary files /dev/null and b/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--en.png differ
diff --git a/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--en.resized.png b/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--en.resized.png
new file mode 100644
index 0000000..e87f2f6
Binary files /dev/null and b/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--en.resized.png differ
diff --git a/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--nl.png b/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--nl.png
new file mode 100644
index 0000000..38f50e6
Binary files /dev/null and b/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--nl.png differ
diff --git a/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--nl.resized.png b/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--nl.resized.png
new file mode 100644
index 0000000..386a616
Binary files /dev/null and b/src/assets/images/screenshots/07-visualAnatomy3DApp_screenshot--nl.resized.png differ
diff --git a/src/assets/images/screenshots/08-hand--en.png b/src/assets/images/screenshots/08-hand--en.png
deleted file mode 100644
index 28eb71b..0000000
Binary files a/src/assets/images/screenshots/08-hand--en.png and /dev/null differ
diff --git a/src/assets/images/screenshots/08-hand--en.resized.png b/src/assets/images/screenshots/08-hand--en.resized.png
deleted file mode 100644
index a66c159..0000000
Binary files a/src/assets/images/screenshots/08-hand--en.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/08-hand--nl.png b/src/assets/images/screenshots/08-hand--nl.png
deleted file mode 100644
index acb7b64..0000000
Binary files a/src/assets/images/screenshots/08-hand--nl.png and /dev/null differ
diff --git a/src/assets/images/screenshots/08-hand--nl.resized.png b/src/assets/images/screenshots/08-hand--nl.resized.png
deleted file mode 100644
index 495e097..0000000
Binary files a/src/assets/images/screenshots/08-hand--nl.resized.png and /dev/null differ
diff --git a/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--en.png b/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--en.png
new file mode 100644
index 0000000..5de5eb2
Binary files /dev/null and b/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--en.png differ
diff --git a/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--en.resized.png b/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--en.resized.png
new file mode 100644
index 0000000..a70cec6
Binary files /dev/null and b/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--en.resized.png differ
diff --git a/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--nl.png b/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--nl.png
new file mode 100644
index 0000000..6a3f507
Binary files /dev/null and b/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--nl.png differ
diff --git a/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--nl.resized.png b/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--nl.resized.png
new file mode 100644
index 0000000..80ce1eb
Binary files /dev/null and b/src/assets/images/screenshots/08-visualAnatomy3DApp_screenshot--nl.resized.png differ
diff --git a/src/assets/images/slider-1.png b/src/assets/images/slider-1.png
index 711e625..4a89035 100644
Binary files a/src/assets/images/slider-1.png and b/src/assets/images/slider-1.png differ
diff --git a/src/assets/images/slider-2.png b/src/assets/images/slider-2.png
index 3f33697..8f8d2a1 100644
Binary files a/src/assets/images/slider-2.png and b/src/assets/images/slider-2.png differ
diff --git a/src/assets/images/systems/layers/bkg.png b/src/assets/images/systems/layers/bkg.png
index 7ebc5b7..977fa10 100644
Binary files a/src/assets/images/systems/layers/bkg.png and b/src/assets/images/systems/layers/bkg.png differ
diff --git a/src/assets/images/systems/layers/digestive.png b/src/assets/images/systems/layers/digestive.png
index ea37ac3..d62c50b 100644
Binary files a/src/assets/images/systems/layers/digestive.png 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
index ddf071a..e2f0d12 100644
Binary files a/src/assets/images/systems/layers/endocrine.png 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
index 7239984..348e009 100644
Binary files a/src/assets/images/systems/layers/ligamentous.png 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
index 9226a04..4cb6d9c 100644
Binary files a/src/assets/images/systems/layers/muscular.png 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
index 73ce981..5db9f0e 100644
Binary files a/src/assets/images/systems/layers/respiratory.png 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
index 02181bb..1f720bc 100644
Binary files a/src/assets/images/systems/layers/skeletal.png 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
index 1c362ab..44dd774 100644
Binary files a/src/assets/images/systems/layers/urogenital.png and b/src/assets/images/systems/layers/urogenital.png differ
diff --git a/src/assets/styles/_blurb.css b/src/assets/styles/_blurb.css
index 9de1966..65a2de0 100644
--- a/src/assets/styles/_blurb.css
+++ b/src/assets/styles/_blurb.css
@@ -8,7 +8,7 @@
display: flex;
flex-direction: column;
justify-content: center;
- align-items: center;
+ align-items: end; /* changed from flex to end by wouter (to outline slider to right side) */
position: relative;
gap: 1.5rem;
}
@@ -47,7 +47,7 @@
border: 2px solid white;
border-radius: var(--r-1);
overflow: hidden;
- background: var(--c-1);
+ background: transparent;/*var(--c-1) */
}
.before-and-after .img {
diff --git a/src/assets/styles/_pricing.css b/src/assets/styles/_pricing.css
index 3562ee0..3de84bb 100644
--- a/src/assets/styles/_pricing.css
+++ b/src/assets/styles/_pricing.css
@@ -1,6 +1,6 @@
.pricing__content {
display: grid;
- grid-template-columns: 0.75fr 1fr 1fr 1fr 1fr;
+ grid-template-columns: 0.33fr 1fr 1fr ;
gap: 1rem;
}
@@ -73,7 +73,7 @@
.level__price-wrapper h2 {
display: inline-flex;
flex-direction: column;
- align-items: end;
+ align-items: center;
}
.level__price-wrapper span {
diff --git a/src/posts/2002-01-01-abc.html b/src/posts/2002-01-01-abc.html
deleted file mode 100644
index 0309660..0000000
--- a/src/posts/2002-01-01-abc.html
+++ /dev/null
@@ -1,14 +0,0 @@
----
-title: 'abc'
-description: 'Watch here for my future blog.'
-date: 2020-07-08T00:00:00Z
-image: 004.jpg
----
-
-
header
-
-
afsdfsd dfdfdfhfhdhdhdfh
-
-
-
-
diff --git a/src/posts/2002-01-01-test-post.md b/src/posts/2002-01-01-test-post.md
deleted file mode 100644
index 95be682..0000000
--- a/src/posts/2002-01-01-test-post.md
+++ /dev/null
@@ -1,22 +0,0 @@
----
-title: 'test post'
-description: 'Watch here for my future blog.'
-date: 2020-28-08T00:00:00Z
-image: 002.jpg
----
-# 5 Fascinating Facts About the Human Circulatory System
-The circulatory system is one of the most vital systems in the human body. It is responsible for transporting oxygen and nutrients to cells, and removing carbon dioxide and other waste products. The circulatory system is made up of the heart, blood vessels, and blood. Here are 5 fascinating facts about this incredible system:
-
-
-
-# Lorem ipsum
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do [eiusmod tempor incididunt]() ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-Lorem ipsum dolor sit amet, [consectetur]() adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-
-
-
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
diff --git a/src/posts/2002-01-01-xyz.md b/src/posts/2002-01-01-xyz.md
deleted file mode 100644
index 05367f2..0000000
--- a/src/posts/2002-01-01-xyz.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-title: 'xyz this is a test post with a long name'
-description: 'Watch here for my future blog.'
-date: 2021-03-08T00:00:00Z
-image: 001.jpg
----
-
-# this is a header
-
-this is a **paragraph**.
-
-
-
-@[odysee](https://odysee.com/@corbettreport:0/waggaman-russiaupdates:1?r=B2sJWhwiPNQDy457RV1NjAYxDb6uiHGm)
-
-@[youtube](dQw4w9WgXcQ)
-
-test
diff --git a/src/posts/2022-11-01-5FactsAboutTheHumanCirculatorySystem.md b/src/posts/2022-11-01-5FactsAboutTheHumanCirculatorySystem.md
index d5cb9e3..6504ec3 100644
--- a/src/posts/2022-11-01-5FactsAboutTheHumanCirculatorySystem.md
+++ b/src/posts/2022-11-01-5FactsAboutTheHumanCirculatorySystem.md
@@ -1,6 +1,6 @@
---
-title: '5 Fascinating Facts'
-description: '5 Fascinating Facts About the Human Circulatory System'
+title: '5 Fascinating Facts About the Human Circulatory System'
+description: 'The circulatory system is made up of the heart, blood vessels, and blood. In this post we will give you 5 fascinating facts about this system'
date: 2022-11-01T00:00:00Z
image: 5FactsAboutHumanCirculatorySystem/humanCirculatorySystem3D_visualAnatomy3DApp.jpg
---
@@ -24,4 +24,6 @@ White blood cells are an important part of the immune system, helping to fight i
Platelets are small cells that circulate in the blood and play an important role in clotting. When blood vessels are damaged, platelets attach to the site of injury and help to plug the hole. They do this by sticking to each other and to the proteins in the blood vessel wall. Platelets also release substances that promote clotting. As more platelets become activated, they release more substances, and a clot begins to form. In a healthy person, the clotting process happens quickly and efficiently. However, in some conditions, such as hemophilia, the clotting process is impaired. Treatment for these conditions often involves transfusions of platelets or plasma, which helps restore the normal clotting process.
## Conclusion:
-The circulatory system is an amazing system that is essential for life. Without it, our bodies would not be able to function correctly. The next time you take a walk or play a sport, remember how amazing your circulatory system is and thank it for keeping you healthy!
\ No newline at end of file
+The circulatory system is an amazing system that is essential for life. Without it, our bodies would not be able to function correctly. The next time you take a walk or play a sport, remember how amazing your circulatory system is and thank it for keeping you healthy!
+
+Are you fascinated by the human circulatory system and want to explore it in a more engaging and interactive way? Our Visual Anatomy 3D app is the perfect solution! With our app, you can dive into the intricacies of the circulatory system and other important systems of the human body using an intuitive, 3D interface that allows you to explore and learn at your own pace. Don't miss out on this amazing opportunity to enhance your understanding of the human body. Download our app today and start your journey into the world of human anatomy!
\ No newline at end of file
diff --git a/src/posts/A Beginner’s Guide to Understanding Anatomical Terms.md b/src/posts/A Beginner’s Guide to Understanding Anatomical Terms.md
deleted file mode 100644
index 4ad0792..0000000
--- a/src/posts/A Beginner’s Guide to Understanding Anatomical Terms.md
+++ /dev/null
@@ -1,109 +0,0 @@
----
-title: 'A Beginner’s Guide to Understanding Anatomical Terms'
-description: 'If you are looking to become a medical professional, then it is important that you learn how to understand anatomical terminology, we will quickly and easily go over the basics to get you up to speed.'
-date: 2022-11-01T00:00:00Z
-image: 5FactsAboutHumanCirculatorySystem/humanCirculatorySystem3D_visualAnatomy3DApp.jpg
----
-If you are looking to become a medical professional, then it is important that you learn how to understand anatomical terminology, which are mostly words derived from Latin and Greek. These terms can be confusing at first, but they're also precise and accurate which reduces the risk in mistaking one thing for another, which makes them very usefull for medical terms. These definitions also stay intact over time since these languages are no longer changing and evolving (also known as "dead" languages).
-
-
-Anatomical terminology are often based on the structure's function, size, motion or location. In this blog we will describe many of the basic underlying termonology, once you know these basics you can see how they are used (often in combination) to specify specific parts of the human anatomy as well as making them easier to remember and understand.
-# Anatomical terms of location
-### Top, Bottom
-**Superior (supra-)** - refers to the upper part of the body or anything that is higher up than something else.
-
-**Inferior (infra-, sub-)** - refers to the lower part of the body or anything that is lower down than something else. Example:
-/examples:
-1. *supraspinatus (supra-spinatus)*: located on the upper (superior) portion of the shoulder blade (scapula).
-2. *obliquus oculi superior*: the upper muscle of the eye.
-3. *Inferior oblique muscle (Musculus obliquus inferior) )
-4. something else : alsdkjflsakdjf
-
-
-
-
-
-### Front, Back
-**Anterior** - describes the front side of the body (defined as a body standing upright with the head facing forward, arms down at the sides with the palms turned forward, and feet parallel facing forward) or anything that is located in front of something else. (The toes are anterior to the foot)
-**Posterior** - describes the back side of the body or anything that is located behind something else. (The popliteus is posterior to the patella)
-**Ventral** - another term for anterior
-**Dorsal** - another term for posterior.
-
-
-
-### Left, Right
-**Lateral** - describe the sides of the body or anything that is located to the side of something else (The thumb (pollex) is lateral to the digits)
-**Medial** -describes structures close to the midline (The hallux is the medial toe)
-**Ipsilateral** - refers to structures on the same side of the body
-**Contralateral** - refers to structures on opposite sides of the body
-
-
-### In relation to the center
-
-**Proximal** - describes anything that is closer to the center of the body or any structure that originates from another structure
-**Distal** - describes anything that is further away from the center of the body or any structure that terminates at another structure
-
-
-# Anatomical terms of motion
-### Angular movements
-**Flexion** - A bending movement that decreases the angle between two different segments. (flexing an elbow or clenching one's hand into a fist)
-**Extension** - The opposite of flexion, describing a straightening movement that increases angle between body parts. (For example when standing up your knees are extended)
-
-### motion relative to the midline
-**Abduction** - is a motion that pulls a structure or part away from the midline of the body (usually carried out by one or more abductor muscles)
-**abductor** - moving away from the midline
-
-### up or downwards motions
-**Elevation** - is movement in a superior (upwards) direction.
-elevator moving upwards
-**Depression** - is movement in an inferior (downwards) direction.
-depressor moving downwards
-
-
-
-Facing up or down
-
-Pronation facing down
-pronator moving to face down
-
-
-
-supsdflkjj
-supinator moving to face upwards
-
-
-
-Rotational motions
-
-Internal rotation (medial rotation or intorsion) is rotation towards the axis of the body (carried out by internal rotator muscles).
-internal rotator rotating towards the body
-
-
-
-External rotation (lateral rotation or extorsion) is rotation away from the center of the body.(carried out by external rotator muscles).
-external rotator rotating away from the body
-
-
-
-Other types of motion
-
-sphincter decreases the size
-
-tensor gives tension to
-
-fixator muscles serve to fix a joint in a given position by stabilizing the prime mover whilst other joints are moving.
-
-
-
-How and why these terms are used in practice
-Anatomical Latin terms are used in professional medical contexts to distinguish between different parts of the body. These terms help to provide a precise description of the location of a given body part, which can be essential when performing medical procedures or communicating about a patient's condition. In addition, these terms can be used to describe the relative positions of different body parts, which can be helpful in understanding how the body is put together. For example, the elbow is located laterally to the hand, and the lungs are located posteriorly to the heart. Ultimately, understanding and using these anatomical Latinlocation terms can help to improve communication between medical professionals and lead to better patient care.
-
-
-
-Conclusion
- anatomy can be a difficult topic to learn, but by breaking down words into their component parts and using mnemonic devices, you can make it easier. Additionally, practicing with the terms often will help them stick in your memory. Finally, understanding how these terms are used in practice can help improve communication between medical professionals.
-
-
-
-Download our visual Anatomy 3D app to help you learn faster and easier
-Now that you know a little more about Latin anatomical terms and how to best remember them, why not try using an anatomy learning tool to make the process even easier? VisualAnatomy3D is an interactive application that allows you to explore the anatomy of the human body in a 3D environment. With this tool, you can learn the location of different body parts and see how they are interconnected. So why not give it a try? The VisualAnatomy3D application can be downloaded for free from the iOS App Store, Google Play, or the Microsoft app store. *add links in text
\ No newline at end of file
diff --git a/src/posts/2002-01-01-cheatsheet.md b/src/posts/InactivePosts/2002-01-01-cheatsheet_noworking
similarity index 100%
rename from src/posts/2002-01-01-cheatsheet.md
rename to src/posts/InactivePosts/2002-01-01-cheatsheet_noworking
diff --git a/src/posts/Understanding basic anatomical terms.md b/src/posts/Understanding basic anatomical terms.md
new file mode 100644
index 0000000..468c7d9
--- /dev/null
+++ b/src/posts/Understanding basic anatomical terms.md
@@ -0,0 +1,137 @@
+---
+title: 'Understanding basic anatomical terms (for muscles)'
+description: 'If you are looking to become a medical professional, then it is important that you learn how to understand anatomical terminology, we will quickly and easily go over the basics to get you up to speed.'
+date: 2022-11-01T00:00:00Z
+image: basicAnatomicalMuscularTerms/humanAnatomy3DApp_anatomicalTermsForMusclesHero.jpg
+---
+If you are looking to become a medical professional, then it is important that you learn how to understand anatomical terminology, which are mostly words derived from Latin and Greek. These terms can be confusing at first, but they're also precise and accurate which reduces the risk in mistaking one thing for another, which makes them very usefull for medical terms. These definitions also stay intact over time since these languages are no longer changing and evolving (also known as "dead" languages).
+
+
+Anatomical terminology are often based on the structure's function, size, motion or location. In this blog we will describe many of the basic underlying termonology, once you know these basics you can see how they are used (often in combination) to specify specific parts of the human anatomy as well as making them easier to remember and understand.
+# Anatomical terms of location
+### Top, Bottom
+**Superior (supra-)** - refers to the upper part of the body or anything that is higher up than something else.
+
+**Inferior (infra-, sub-)** - refers to the lower part of the body or anything that is lower down than something else.
+
+**Examples:**
+1. *Musculus supraspinatus (supra-spinatus)*: Muscle located on the upper (superior) portion of the shoulder blade (scapula).
+2. *Musculus infraspinatus (infra-spinatus)*: Muscle located on the lower (inferior) portion of the shoulder blade (scapula).
+2. *Musculus obliquus oculi superior*: the upper muscle of the eye (oclu).
+3. *Musculus obliquus inferior bulbi*: lower muscle of the eye
+
+
+
+
+
+### Front, Back
+**Anterior/Ventral** - describes the front side of the body (defined as a body standing upright with the head facing forward, arms down at the sides with the palms turned forward, and feet parallel facing forward) or anything that is located in front of something else. (The toes are anterior to the foot)
+
+**Posterior/Dorsal** - describes the back side of the body or anything that is located behind something else. (The popliteus is posterior to the patella)
+
+**Examples:**
+1. *Musculus tibialis anterior*: Muscle located on the front (anterior) of the tibia (shinbone)
+2. *Musculus tibialis posterior*: Muscle located on the back (posterior) of the tibia (shinbone)
+
+
+
+### Left, Right
+**Lateral** - describes the sides of the body or anything that is located to the side of something else.
+
+**Medial** -describes any structure or muscle that is close to the midline.
+
+**Examples:**
+1. *Musculus vastus medialis*: Muscle (on the thigh) located close to the midline (medial side) of the body.
+2. *Musculus vastus lateralis*: Muscle (on the thigh) located on the other side (lateral side) of the thigh.
+
+
+
+### depth
+**Superficial** - describes any structure or muscle that is closer to (superficial) the surface of the body.
+
+**Profundus** - describes structures that are deeply situated.
+
+**Examples:**
+1. *flexor digitorum superficialis muscle*: Muscle (on the anterior compartment of the forearm) located close(r) to the surface of the forearm in relation to the flexor digitorum profundus muscle.
+2. *flexor digitorum profundus muscle*: Muscle (on the deep volar compartment of the forearm) located deep(er) in the forearm in relation to the flexor digitorum superficialis muscle.
+
+
+
+# Anatomical terms of motion
+### Angular movements
+**Flexion** - A bending movement that decreases the angle between two different segments. (flexing an elbow or clenching one's hand into a fist)
+
+**Extension** - The opposite of flexion, describing a straightening movement that increases angle between body parts. (For example when standing up your knees are extended)
+
+**Examples:**
+1. *Flexor Carpi Radialis Muscle*: Muscle (on the anterior part of the forearm) used to flexes the hand at the wrist joint.
+2. *Extensor Digitorum Muscle*: Muscle (on the posterior part of the forearm) used to extend the phalanges and the wrist
+
+
+
+
+### motion relative to the midline
+**Abduction** - is a motion that pulls a structure or part away from the midline of the body (usually carried out by one or more abductor muscles)
+
+**Adduction** - is a motion that pulls a structure or part towards the midline of the body, or towards the midline of a limb
+
+**Examples:**
+1. *Adductor Longus Muscle*: Muscle (on the medial aspect of the thigh) which adducts the thigh at the hipjoint.
+2. *Abductor Pollicis Brevis Muscle*: Muscle (on the lateral side in the thenar eminence of the hand) abducts the first metacarpal bone (of the thumb) at the first carpometacarpal joint,(together with the abductor pollicis longus muscle)
+
+
+
+
+### up or downwards motions
+**Elevation** - is movement in a superior (upwards) direction.
+
+**Depression** - is movement in an inferior (downwards) direction.
+
+**Examples:**
+1. *Levator Scapulae Muscle*: Muscle (on the posterior triangle of the neck) which elevates the pectoral (shoulder) girdle at the acromioclavicular and sternoclavicular joints.
+2. *Depressor Labii Inferioris Muscle*: Muscle (on in the chin area) which depresses the lower lip.
+
+
+
+
+# Anatomical terms of shape and size
+### size
+**Brevis** - means short
+
+**longus** - means long
+
+**maximus** - means largest.
+
+**minor** - means small
+
+**minimus** - smallest
+
+**Examples:**
+1. *Gluteus Minimus Muscle*: Muscle (deep in the posterior region of the hip) which acts as a hip stabilizer and abductor of the hip
+2. *Gluteus Maximus Muscle*: Muscle (on the posterior aspect of the hip joint) which works together with other muscles to extend the hip and to externally rotate the hip
+3. *Teres Minor Muscle*: Muscle (on the posterior surface of the scapula) which produces external rotation of the shoulder joint.
+
+
+
+### shape
+**deltoid** - means triangular
+
+**quadratus** - means having four sides
+
+**rhomboideus** - means having a rhomboid shape
+
+**teres** - means round or cylindrical
+
+**trapezius** - means having a trapezoid shape
+
+**rectus** - means straight
+
+**Examples:**
+1. *pronator teres Muscle*: Muscle (on the anterior aspect of the forearm) which pronates the forearm and assists in flexion of the elbow joint
+2. *pronator quadratus Muscle*: Muscle (on anterior (flexor) compartment of forearm) which produces forearm pronation by acting on the proximal radioulnar joint
+3. *rectus abdominis Muscle*: Muscle (down the middle of your abdomen from your ribs to the front of your pelvis) which flexes the trunk.
+
+
+
+# Want to learn more?
+Now that you know a little more about Latin anatomical terms and how to best remember them, why not try using an anatomy learning tool to make the process even easier? VisualAnatomy3D is an interactive application that allows you to explore the anatomy of the human body in a 3D environment. With this tool, you can learn the location of different body parts and see how they are interconnected. So why not give it a try? The VisualAnatomy3D application can be downloaded for free from the [iOS App Store](https://apps.apple.com/il/app/visual-anatomy-3d-human/id1148048602), [Google Play](https://play.google.com/store/apps/details?id=com.graphicvizion.visualAnatomyHumanFr), or the [Microsoft app store](https://www.microsoft.com/en-us/p/visual-anatomy-human-body/9nblggh4qg21).
\ No newline at end of file
diff --git a/webpack.config.js b/webpack.config.js
index b13e025..eb115be 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -45,7 +45,7 @@ module.exports = {
use: [MiniCssExtractPlugin.loader, 'css-loader', 'postcss-loader'],
},
{
- test: /\.(gif|png|jpg|jpeg)$/i,
+ test: /\.(gif|png|jpg|jpeg|mp4|webm)$/i,
use: [
{
loader: 'file-loader',