diff --git a/.github/actions/image-size-check/action.yml b/.github/actions/image-size-check/action.yml
new file mode 100644
index 0000000000..cba3fd7795
--- /dev/null
+++ b/.github/actions/image-size-check/action.yml
@@ -0,0 +1,69 @@
+name: 'Image Size Check'
+description: 'Checks for oversized images in a pull request.'
+runs:
+ using: 'composite'
+ steps:
+ - name: Get changed files
+ id: changed-files
+ uses: tj-actions/changed-files@v44
+ with:
+ separator: '\n'
+ files_ignore_pattern: |
+ **/*.pdf
+ **/*.zip
+
+ - name: Enforce Image Size Limits on Changed Files
+ if: steps.changed-files.outputs.all_changed_files
+ shell: bash
+ run: |
+ IMAGE_LIMIT_MB=2
+ GIF_LIMIT_MB=10
+
+ OVERSIZED_IMAGES=""
+ OVERSIZED_GIFS=""
+
+ while IFS= read -r file; do
+ if [ -z "$file" ]; then continue; fi
+ if [ ! -f "$file" ]; then
+ echo "Warning: Changed file not found, skipping: $file"
+ continue
+ fi
+
+ if [[ "$file" == *.png || "$file" == *.jpg || "$file" == *.jpeg || "$file" == *.svg ]]; then
+ size_in_bytes=$(stat -c%s "$file")
+ limit_in_bytes=$((IMAGE_LIMIT_MB * 1024 * 1024))
+ if [ "$size_in_bytes" -gt "$limit_in_bytes" ]; then
+ size_human=$(ls -lh "$file" | awk '{print $5}')
+ OVERSIZED_IMAGES+=" - $file ($size_human)\n"
+ fi
+ elif [[ "$file" == *.gif ]]; then
+ size_in_bytes=$(stat -c%s "$file")
+ limit_in_bytes=$((GIF_LIMIT_MB * 1024 * 1024))
+ if [ "$size_in_bytes" -gt "$limit_in_bytes" ]; then
+ size_human=$(ls -lh "$file" | awk '{print $5}')
+ OVERSIZED_GIFS+=" - $file ($size_human)\n"
+ fi
+ fi
+ done <<< "${{ steps.changed-files.outputs.all_changed_files }}"
+
+ # --- Report errors if any oversized files are found ---
+ ERROR_MESSAGE=""
+ if [ -n "$OVERSIZED_IMAGES" ]; then
+ ERROR_MESSAGE+="Found images exceeding the ${IMAGE_LIMIT_MB}MB limit:\n"
+ ERROR_MESSAGE+="${OVERSIZED_IMAGES}"
+ fi
+
+ if [ -n "$OVERSIZED_GIFS" ]; then
+ ERROR_MESSAGE+="Found GIFs exceeding the ${GIF_LIMIT_MB}MB limit:\n"
+ ERROR_MESSAGE+="${OVERSIZED_GIFS}"
+ fi
+
+ if [ -n "$ERROR_MESSAGE" ]; then
+ echo -e "::error::Oversized images found in this PR. Please optimize or remove them.\n"
+ echo -e "--------------------------------------------------"
+ echo -e "$ERROR_MESSAGE"
+ echo -e "--------------------------------------------------"
+ exit 1
+ else
+ echo "All changed images are within their size limits. Check passed."
+ fi
\ No newline at end of file
diff --git a/.github/workflows/image-size-check.yml b/.github/workflows/image-size-check.yml
new file mode 100644
index 0000000000..ca01050941
--- /dev/null
+++ b/.github/workflows/image-size-check.yml
@@ -0,0 +1,18 @@
+name: Image Size Check
+
+on:
+ pull_request:
+ types: [opened, synchronize]
+
+jobs:
+ check-images:
+ name: Image Size Check
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+
+ - name: Check Image Sizes
+ uses: ./.github/actions/image-size-check
diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml
index 9ba587c2fc..87b5e7fa6f 100644
--- a/.github/workflows/preview.yml
+++ b/.github/workflows/preview.yml
@@ -12,71 +12,6 @@ concurrency:
cancel-in-progress: true
jobs:
- image-size-check:
- name: Image Size Check
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Repository
- uses: actions/checkout@v4
-
- - name: Get changed files
- id: changed-files
- uses: tj-actions/changed-files@v44
-
- - name: Enforce Image Size Limits on Changed Files
- if: steps.changed-files.outputs.all_changed_files
- run: |
- #!/bin/bash
- set -e
-
- # Input from the previous step
- CHANGED_FILES="${{ steps.changed-files.outputs.all_changed_files }}"
-
- IMAGE_LIMIT_MB=2
- GIF_LIMIT_MB=10
-
- OVERSIZED_IMAGES=""
- OVERSIZED_GIFS=""
-
- for file in $CHANGED_FILES; do
- if [[ "$file" == *.png || "$file" == *.jpg || "$file" == *.jpeg || "$file" == *.svg ]]; then
- size_in_bytes=$(stat -c%s "$file")
- limit_in_bytes=$((IMAGE_LIMIT_MB * 1024 * 1024))
- if [ "$size_in_bytes" -gt "$limit_in_bytes" ]; then
- size_human=$(ls -lh "$file" | awk '{print $5}')
- OVERSIZED_IMAGES+=" - $file ($size_human)\n"
- fi
- elif [[ "$file" == *.gif ]]; then
- size_in_bytes=$(stat -c%s "$file")
- limit_in_bytes=$((GIF_LIMIT_MB * 1024 * 1024))
- if [ "$size_in_bytes" -gt "$limit_in_bytes" ]; then
- size_human=$(ls -lh "$file" | awk '{print $5}')
- OVERSIZED_GIFS+=" - $file ($size_human)\n"
- fi
- fi
- done
-
- # --- Report errors if any oversized files are found ---
- ERROR_MESSAGE=""
- if [ -n "$OVERSIZED_IMAGES" ]; then
- ERROR_MESSAGE+="Found images exceeding the ${IMAGE_LIMIT_MB}MB limit:\n"
- ERROR_MESSAGE+="${OVERSIZED_IMAGES}"
- fi
-
- if [ -n "$OVERSIZED_GIFS" ]; then
- ERROR_MESSAGE+="Found GIFs exceeding the ${GIF_LIMIT_MB}MB limit:\n"
- ERROR_MESSAGE+="${OVERSIZED_GIFS}"
- fi
-
- if [ -n "$ERROR_MESSAGE" ]; then
- echo -e "::error::Oversized images found in this PR. Please optimize or remove them.\n"
- echo -e "--------------------------------------------------"
- echo -e "$ERROR_MESSAGE"
- echo -e "--------------------------------------------------"
- exit 1
- else
- echo "All changed images are within their size limits. Check passed."
- fi
# This job is used to render datasheets, but only if they have changed.
# It's a separate job so we don't have to cleanup the machine afterwards.
render-datasheets:
diff --git a/content/_snippets/hardware/10k-resistor/image.svg b/content/_snippets/hardware/10k-resistor/image.svg
index f1661cdc48..c10e189030 100644
--- a/content/_snippets/hardware/10k-resistor/image.svg
+++ b/content/_snippets/hardware/10k-resistor/image.svg
@@ -1,8 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/220ohm-resistor/image.svg b/content/_snippets/hardware/220ohm-resistor/image.svg
index 8ad4536aab..f8e807114d 100644
--- a/content/_snippets/hardware/220ohm-resistor/image.svg
+++ b/content/_snippets/hardware/220ohm-resistor/image.svg
@@ -1,8 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/4.7k-resistor/image.svg b/content/_snippets/hardware/4.7k-resistor/image.svg
index 7dd3fdbf5e..7f745e796a 100644
--- a/content/_snippets/hardware/4.7k-resistor/image.svg
+++ b/content/_snippets/hardware/4.7k-resistor/image.svg
@@ -1,8 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/breadboard/image.svg b/content/_snippets/hardware/breadboard/image.svg
index ed750debcc..ce439ca699 100644
--- a/content/_snippets/hardware/breadboard/image.svg
+++ b/content/_snippets/hardware/breadboard/image.svg
@@ -1,540 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/dc-motor/image.svg b/content/_snippets/hardware/dc-motor/image.svg
index d4ab199c67..c051e670dd 100644
--- a/content/_snippets/hardware/dc-motor/image.svg
+++ b/content/_snippets/hardware/dc-motor/image.svg
@@ -1,13 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/dipole-antenna/image.svg b/content/_snippets/hardware/dipole-antenna/image.svg
index 3319c8de80..bad17e0700 100644
--- a/content/_snippets/hardware/dipole-antenna/image.svg
+++ b/content/_snippets/hardware/dipole-antenna/image.svg
@@ -1,6 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/jumper-wires/image.svg b/content/_snippets/hardware/jumper-wires/image.svg
index 91074c09b5..1d3c6b8933 100644
--- a/content/_snippets/hardware/jumper-wires/image.svg
+++ b/content/_snippets/hardware/jumper-wires/image.svg
@@ -1,7 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/led/image.svg b/content/_snippets/hardware/led/image.svg
index 33b363381e..6ec03a8f07 100644
--- a/content/_snippets/hardware/led/image.svg
+++ b/content/_snippets/hardware/led/image.svg
@@ -1,9 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/oled-display/image.svg b/content/_snippets/hardware/oled-display/image.svg
index c0b7e84cfa..591b9c05ac 100644
--- a/content/_snippets/hardware/oled-display/image.svg
+++ b/content/_snippets/hardware/oled-display/image.svg
@@ -1,10 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/power-source/image.svg b/content/_snippets/hardware/power-source/image.svg
index df2230f71c..8639ea2c97 100644
--- a/content/_snippets/hardware/power-source/image.svg
+++ b/content/_snippets/hardware/power-source/image.svg
@@ -1,8 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/pushbutton/image.svg b/content/_snippets/hardware/pushbutton/image.svg
index f6c923e5c8..1babcd1593 100644
--- a/content/_snippets/hardware/pushbutton/image.svg
+++ b/content/_snippets/hardware/pushbutton/image.svg
@@ -1,11 +1 @@
-
+
\ No newline at end of file
diff --git a/content/_snippets/hardware/sim-card/image.svg b/content/_snippets/hardware/sim-card/image.svg
index 39490fd255..f21eb954a0 100644
--- a/content/_snippets/hardware/sim-card/image.svg
+++ b/content/_snippets/hardware/sim-card/image.svg
@@ -1,10 +1 @@
-
+
\ No newline at end of file
diff --git a/content/arduino-cloud/01.guides/00.overview/assets/dashboard-app.png b/content/arduino-cloud/01.guides/00.overview/assets/dashboard-app.png
index bc1079a951..b9e640fc29 100644
Binary files a/content/arduino-cloud/01.guides/00.overview/assets/dashboard-app.png and b/content/arduino-cloud/01.guides/00.overview/assets/dashboard-app.png differ
diff --git a/content/arduino-cloud/01.guides/00.overview/assets/dashboard.png b/content/arduino-cloud/01.guides/00.overview/assets/dashboard.png
index 1c23cc2e51..4171ee0d43 100644
Binary files a/content/arduino-cloud/01.guides/00.overview/assets/dashboard.png and b/content/arduino-cloud/01.guides/00.overview/assets/dashboard.png differ
diff --git a/content/arduino-cloud/01.guides/00.overview/assets/device.png b/content/arduino-cloud/01.guides/00.overview/assets/device.png
index 64e0cadc19..de75be0dcc 100644
Binary files a/content/arduino-cloud/01.guides/00.overview/assets/device.png and b/content/arduino-cloud/01.guides/00.overview/assets/device.png differ
diff --git a/content/arduino-cloud/01.guides/00.overview/assets/editor.png b/content/arduino-cloud/01.guides/00.overview/assets/editor.png
index e94a94655f..7a39ea7a0a 100644
Binary files a/content/arduino-cloud/01.guides/00.overview/assets/editor.png and b/content/arduino-cloud/01.guides/00.overview/assets/editor.png differ
diff --git a/content/arduino-cloud/01.guides/00.overview/assets/home.png b/content/arduino-cloud/01.guides/00.overview/assets/home.png
index d8c76c8572..cd791b1891 100644
Binary files a/content/arduino-cloud/01.guides/00.overview/assets/home.png and b/content/arduino-cloud/01.guides/00.overview/assets/home.png differ
diff --git a/content/arduino-cloud/01.guides/00.overview/assets/overview-interaction.png b/content/arduino-cloud/01.guides/00.overview/assets/overview-interaction.png
index 710ac18cc7..c55ca630a3 100644
Binary files a/content/arduino-cloud/01.guides/00.overview/assets/overview-interaction.png and b/content/arduino-cloud/01.guides/00.overview/assets/overview-interaction.png differ
diff --git a/content/arduino-cloud/01.guides/00.overview/assets/overview-monitor.png b/content/arduino-cloud/01.guides/00.overview/assets/overview-monitor.png
index 42f746856b..035c4904b0 100644
Binary files a/content/arduino-cloud/01.guides/00.overview/assets/overview-monitor.png and b/content/arduino-cloud/01.guides/00.overview/assets/overview-monitor.png differ
diff --git a/content/arduino-cloud/01.guides/00.overview/assets/thing.png b/content/arduino-cloud/01.guides/00.overview/assets/thing.png
index 591be0e7e0..2c1a01e899 100644
Binary files a/content/arduino-cloud/01.guides/00.overview/assets/thing.png and b/content/arduino-cloud/01.guides/00.overview/assets/thing.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/agentinstallation.png b/content/arduino-cloud/01.guides/01.editor/assets/agentinstallation.png
index 7f120a72f8..352f2c45ce 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/agentinstallation.png and b/content/arduino-cloud/01.guides/01.editor/assets/agentinstallation.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/blink.png b/content/arduino-cloud/01.guides/01.editor/assets/blink.png
index c516836c6d..cb4728f7bf 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/blink.png and b/content/arduino-cloud/01.guides/01.editor/assets/blink.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/board-connected.png b/content/arduino-cloud/01.guides/01.editor/assets/board-connected.png
index b1c2fced10..67a682ca76 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/board-connected.png and b/content/arduino-cloud/01.guides/01.editor/assets/board-connected.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/collab-code-multiple.gif b/content/arduino-cloud/01.guides/01.editor/assets/collab-code-multiple.gif
index 1060c967f6..3efa44b300 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/collab-code-multiple.gif and b/content/arduino-cloud/01.guides/01.editor/assets/collab-code-multiple.gif differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/collab-code-orange-frame.png b/content/arduino-cloud/01.guides/01.editor/assets/collab-code-orange-frame.png
index b63e2d3bec..83981bb5b9 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/collab-code-orange-frame.png and b/content/arduino-cloud/01.guides/01.editor/assets/collab-code-orange-frame.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/editor-overview.png b/content/arduino-cloud/01.guides/01.editor/assets/editor-overview.png
index e0b02bc675..05beeb8eb1 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/editor-overview.png and b/content/arduino-cloud/01.guides/01.editor/assets/editor-overview.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/examples.png b/content/arduino-cloud/01.guides/01.editor/assets/examples.png
index bd113ddfc5..3688e024f2 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/examples.png and b/content/arduino-cloud/01.guides/01.editor/assets/examples.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/libraries.png b/content/arduino-cloud/01.guides/01.editor/assets/libraries.png
index 6f63b1fcea..50560cfa9a 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/libraries.png and b/content/arduino-cloud/01.guides/01.editor/assets/libraries.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/reference.png b/content/arduino-cloud/01.guides/01.editor/assets/reference.png
index 4340c58130..d5b1d854a5 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/reference.png and b/content/arduino-cloud/01.guides/01.editor/assets/reference.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/serial.png b/content/arduino-cloud/01.guides/01.editor/assets/serial.png
index 1bfbdfd18c..52460c3fd8 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/serial.png and b/content/arduino-cloud/01.guides/01.editor/assets/serial.png differ
diff --git a/content/arduino-cloud/01.guides/01.editor/assets/success-upload.png b/content/arduino-cloud/01.guides/01.editor/assets/success-upload.png
index b54404744e..9479702ee7 100644
Binary files a/content/arduino-cloud/01.guides/01.editor/assets/success-upload.png and b/content/arduino-cloud/01.guides/01.editor/assets/success-upload.png differ
diff --git a/content/arduino-cloud/01.guides/02.arduino-c/assets/dashboard.png b/content/arduino-cloud/01.guides/02.arduino-c/assets/dashboard.png
index 9fa55a68c7..1aa1694036 100644
Binary files a/content/arduino-cloud/01.guides/02.arduino-c/assets/dashboard.png and b/content/arduino-cloud/01.guides/02.arduino-c/assets/dashboard.png differ
diff --git a/content/arduino-cloud/01.guides/02.arduino-c/assets/esp32-only.png b/content/arduino-cloud/01.guides/02.arduino-c/assets/esp32-only.png
index 3b3bcdcc87..aae4308248 100644
Binary files a/content/arduino-cloud/01.guides/02.arduino-c/assets/esp32-only.png and b/content/arduino-cloud/01.guides/02.arduino-c/assets/esp32-only.png differ
diff --git a/content/arduino-cloud/01.guides/02.arduino-c/assets/thing-config.png b/content/arduino-cloud/01.guides/02.arduino-c/assets/thing-config.png
index b444113248..25152fb5a5 100644
Binary files a/content/arduino-cloud/01.guides/02.arduino-c/assets/thing-config.png and b/content/arduino-cloud/01.guides/02.arduino-c/assets/thing-config.png differ
diff --git a/content/arduino-cloud/01.guides/03.esp32/assets/dashboard.png b/content/arduino-cloud/01.guides/03.esp32/assets/dashboard.png
index 0fa02680c0..74b0cdd2ff 100644
Binary files a/content/arduino-cloud/01.guides/03.esp32/assets/dashboard.png and b/content/arduino-cloud/01.guides/03.esp32/assets/dashboard.png differ
diff --git a/content/arduino-cloud/01.guides/03.esp32/assets/esp32-only.png b/content/arduino-cloud/01.guides/03.esp32/assets/esp32-only.png
index 3b3bcdcc87..aae4308248 100644
Binary files a/content/arduino-cloud/01.guides/03.esp32/assets/esp32-only.png and b/content/arduino-cloud/01.guides/03.esp32/assets/esp32-only.png differ
diff --git a/content/arduino-cloud/01.guides/03.esp32/assets/thing-config.png b/content/arduino-cloud/01.guides/03.esp32/assets/thing-config.png
index b444113248..25152fb5a5 100644
Binary files a/content/arduino-cloud/01.guides/03.esp32/assets/thing-config.png and b/content/arduino-cloud/01.guides/03.esp32/assets/thing-config.png differ
diff --git a/content/arduino-cloud/01.guides/04.micropython/assets/colored-light-variable.png b/content/arduino-cloud/01.guides/04.micropython/assets/colored-light-variable.png
index c28910f906..d52461c104 100644
Binary files a/content/arduino-cloud/01.guides/04.micropython/assets/colored-light-variable.png and b/content/arduino-cloud/01.guides/04.micropython/assets/colored-light-variable.png differ
diff --git a/content/arduino-cloud/01.guides/04.micropython/assets/colored-light-widget.png b/content/arduino-cloud/01.guides/04.micropython/assets/colored-light-widget.png
index 612b434572..f6c2a23353 100644
Binary files a/content/arduino-cloud/01.guides/04.micropython/assets/colored-light-widget.png and b/content/arduino-cloud/01.guides/04.micropython/assets/colored-light-widget.png differ
diff --git a/content/arduino-cloud/01.guides/04.micropython/assets/dashboard.png b/content/arduino-cloud/01.guides/04.micropython/assets/dashboard.png
index 9999596938..84d51b2335 100644
Binary files a/content/arduino-cloud/01.guides/04.micropython/assets/dashboard.png and b/content/arduino-cloud/01.guides/04.micropython/assets/dashboard.png differ
diff --git a/content/arduino-cloud/01.guides/04.micropython/assets/device-key.png b/content/arduino-cloud/01.guides/04.micropython/assets/device-key.png
index 1ef74de73f..efb0e2b55f 100644
Binary files a/content/arduino-cloud/01.guides/04.micropython/assets/device-key.png and b/content/arduino-cloud/01.guides/04.micropython/assets/device-key.png differ
diff --git a/content/arduino-cloud/01.guides/04.micropython/assets/set-device-name.png b/content/arduino-cloud/01.guides/04.micropython/assets/set-device-name.png
index aa1cec998c..1fe8d1ddfb 100644
Binary files a/content/arduino-cloud/01.guides/04.micropython/assets/set-device-name.png and b/content/arduino-cloud/01.guides/04.micropython/assets/set-device-name.png differ
diff --git a/content/arduino-cloud/01.guides/04.micropython/assets/setup-device-prompt.png b/content/arduino-cloud/01.guides/04.micropython/assets/setup-device-prompt.png
index b58a3a0b9d..3795567e01 100644
Binary files a/content/arduino-cloud/01.guides/04.micropython/assets/setup-device-prompt.png and b/content/arduino-cloud/01.guides/04.micropython/assets/setup-device-prompt.png differ
diff --git a/content/arduino-cloud/01.guides/04.micropython/assets/thing.png b/content/arduino-cloud/01.guides/04.micropython/assets/thing.png
index 3dfbd3f472..c5f7f4eae3 100644
Binary files a/content/arduino-cloud/01.guides/04.micropython/assets/thing.png and b/content/arduino-cloud/01.guides/04.micropython/assets/thing.png differ
diff --git a/content/arduino-cloud/01.guides/05.python/assets/dashboard.png b/content/arduino-cloud/01.guides/05.python/assets/dashboard.png
index c8b54d1c1e..7be6f8bc6b 100644
Binary files a/content/arduino-cloud/01.guides/05.python/assets/dashboard.png and b/content/arduino-cloud/01.guides/05.python/assets/dashboard.png differ
diff --git a/content/arduino-cloud/01.guides/05.python/assets/device-key.png b/content/arduino-cloud/01.guides/05.python/assets/device-key.png
index 1ef74de73f..efb0e2b55f 100644
Binary files a/content/arduino-cloud/01.guides/05.python/assets/device-key.png and b/content/arduino-cloud/01.guides/05.python/assets/device-key.png differ
diff --git a/content/arduino-cloud/01.guides/05.python/assets/thing.png b/content/arduino-cloud/01.guides/05.python/assets/thing.png
index 20b7404283..f91edc9f38 100644
Binary files a/content/arduino-cloud/01.guides/05.python/assets/thing.png and b/content/arduino-cloud/01.guides/05.python/assets/thing.png differ
diff --git a/content/arduino-cloud/01.guides/05.python/assets/values.png b/content/arduino-cloud/01.guides/05.python/assets/values.png
index 0f2d2fc1b4..0159f8092d 100644
Binary files a/content/arduino-cloud/01.guides/05.python/assets/values.png and b/content/arduino-cloud/01.guides/05.python/assets/values.png differ
diff --git a/content/arduino-cloud/01.guides/05.python/assets/variable-update.png b/content/arduino-cloud/01.guides/05.python/assets/variable-update.png
index 1cfbb8733b..841164f947 100644
Binary files a/content/arduino-cloud/01.guides/05.python/assets/variable-update.png and b/content/arduino-cloud/01.guides/05.python/assets/variable-update.png differ
diff --git a/content/arduino-cloud/01.guides/06.javascript/assets/device-key.png b/content/arduino-cloud/01.guides/06.javascript/assets/device-key.png
index 1ef74de73f..efb0e2b55f 100644
Binary files a/content/arduino-cloud/01.guides/06.javascript/assets/device-key.png and b/content/arduino-cloud/01.guides/06.javascript/assets/device-key.png differ
diff --git a/content/arduino-cloud/01.guides/06.javascript/assets/test_value.png b/content/arduino-cloud/01.guides/06.javascript/assets/test_value.png
index bc5c488e5d..31e636ce32 100644
Binary files a/content/arduino-cloud/01.guides/06.javascript/assets/test_value.png and b/content/arduino-cloud/01.guides/06.javascript/assets/test_value.png differ
diff --git a/content/arduino-cloud/01.guides/06.javascript/assets/thing.png b/content/arduino-cloud/01.guides/06.javascript/assets/thing.png
index 3d5f3d0531..9d7563c6b7 100644
Binary files a/content/arduino-cloud/01.guides/06.javascript/assets/thing.png and b/content/arduino-cloud/01.guides/06.javascript/assets/thing.png differ
diff --git a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-01.png b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-01.png
index 00ed6b5cc7..ea79004e3a 100644
Binary files a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-01.png and b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-01.png differ
diff --git a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-02.gif b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-02.gif
index 07af54c9f3..a0deb5eaa3 100644
Binary files a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-02.gif and b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-02.gif differ
diff --git a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-03.gif b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-03.gif
index b8aabb128b..fc68077955 100644
Binary files a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-03.gif and b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-03.gif differ
diff --git a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-04.gif b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-04.gif
index b2923427c0..3941766287 100644
Binary files a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-04.gif and b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-04.gif differ
diff --git a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-05.gif b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-05.gif
index 0eeabf8d8f..80be86acd5 100644
Binary files a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-05.gif and b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-05.gif differ
diff --git a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-06.gif b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-06.gif
index 126a3c6c51..2772777fee 100644
Binary files a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-06.gif and b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-06.gif differ
diff --git a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-07.gif b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-07.gif
index 7f337c7e1a..5897145bd0 100644
Binary files a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-07.gif and b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-07.gif differ
diff --git a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-08.png b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-08.png
index 86cc666190..f04b5b1aec 100644
Binary files a/content/arduino-cloud/01.guides/07.node-red/assets/nodered-08.png and b/content/arduino-cloud/01.guides/07.node-red/assets/nodered-08.png differ
diff --git a/content/arduino-cloud/01.guides/07.node-red/assets/rednode-09.png b/content/arduino-cloud/01.guides/07.node-red/assets/rednode-09.png
index 3de28d8405..7f0cb1df62 100644
Binary files a/content/arduino-cloud/01.guides/07.node-red/assets/rednode-09.png and b/content/arduino-cloud/01.guides/07.node-red/assets/rednode-09.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-01.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-01.png
index 51eee6b0d1..1ec54a6f5c 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-01.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-01.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-02.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-02.png
index 3001f09385..19483a9549 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-02.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-02.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-03.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-03.png
index 5707976f2c..c868ff3f59 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-03.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-03.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-04.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-04.png
index af0bc52f20..34892c24ca 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-04.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-04.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-05.1.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-05.1.png
index c70be71cf0..289e323a7f 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-05.1.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-05.1.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-05.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-05.png
index 30ed0c6445..0a85c4a0a7 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-05.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-05.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-06.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-06.png
index c5fddbe99e..143e1f8394 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-06.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-06.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-07.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-07.png
index 7020abac27..af56eb904e 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-07.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-07.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-08.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-08.png
index f7d582ab99..edc5fb1255 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-08.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa-mkr-rgb-shield-img-08.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_circuit_1.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_circuit_1.png
index 84839468ff..35b93c1772 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_circuit_1.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_circuit_1.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_circuit_2.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_circuit_2.png
index 2be8ba27bf..4eda16149f 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_circuit_2.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_circuit_2.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_1.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_1.png
index 19491139e6..3080faf082 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_1.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_1.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_2.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_2.png
index 0365d51f42..4eec21da85 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_2.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_2.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_3.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_3.png
index 62c08a2fc9..7c02b7257b 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_3.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_3.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_4.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_4.png
index 8beefd9fca..8872fc2976 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_4.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_4.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_5.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_5.png
index 17be8ca54c..3f852fad03 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_5.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_phone_5.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_variables.png b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_variables.png
index e63e3fbb7a..dc7707cd6f 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/alexa_variables.png and b/content/arduino-cloud/01.guides/08.alexa/assets/alexa_variables.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/associate_device.png b/content/arduino-cloud/01.guides/08.alexa/assets/associate_device.png
index 705c592dbc..bb8f943b6e 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/associate_device.png and b/content/arduino-cloud/01.guides/08.alexa/assets/associate_device.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/dashboard_edit_blank.png b/content/arduino-cloud/01.guides/08.alexa/assets/dashboard_edit_blank.png
index 15e2954017..d2ef861868 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/dashboard_edit_blank.png and b/content/arduino-cloud/01.guides/08.alexa/assets/dashboard_edit_blank.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/device_overview.png b/content/arduino-cloud/01.guides/08.alexa/assets/device_overview.png
index 4d0a44ed2a..fd5f5f6aaf 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/device_overview.png and b/content/arduino-cloud/01.guides/08.alexa/assets/device_overview.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_1.png b/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_1.png
index 5c72e0dc44..8625766499 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_1.png and b/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_1.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_2.png b/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_2.png
index dc1d17ba7e..886a2961a7 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_2.png and b/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_2.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_3.png b/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_3.png
index 32775546b9..749d7399d0 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_3.png and b/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_3.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_4.png b/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_4.png
index afcb09bd1e..999d362ec5 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_4.png and b/content/arduino-cloud/01.guides/08.alexa/assets/device_setup_4.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/new_dashboard.png b/content/arduino-cloud/01.guides/08.alexa/assets/new_dashboard.png
index be696ec4ee..2c2a0796ae 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/new_dashboard.png and b/content/arduino-cloud/01.guides/08.alexa/assets/new_dashboard.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/new_device.png b/content/arduino-cloud/01.guides/08.alexa/assets/new_device.png
index 96e6c0fb3a..c27c81c92f 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/new_device.png and b/content/arduino-cloud/01.guides/08.alexa/assets/new_device.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/new_thing.png b/content/arduino-cloud/01.guides/08.alexa/assets/new_thing.png
index dde2c600df..9d181e9c23 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/new_thing.png and b/content/arduino-cloud/01.guides/08.alexa/assets/new_thing.png differ
diff --git a/content/arduino-cloud/01.guides/08.alexa/assets/thing_overview.png b/content/arduino-cloud/01.guides/08.alexa/assets/thing_overview.png
index 8bc9701882..f651b370f6 100644
Binary files a/content/arduino-cloud/01.guides/08.alexa/assets/thing_overview.png and b/content/arduino-cloud/01.guides/08.alexa/assets/thing_overview.png differ
diff --git a/content/arduino-cloud/01.guides/09.google-home/assets/googleHome_1.png b/content/arduino-cloud/01.guides/09.google-home/assets/googleHome_1.png
index 043e7cf527..5c7a40142a 100644
Binary files a/content/arduino-cloud/01.guides/09.google-home/assets/googleHome_1.png and b/content/arduino-cloud/01.guides/09.google-home/assets/googleHome_1.png differ
diff --git a/content/arduino-cloud/01.guides/09.google-home/assets/googleHome_2.png b/content/arduino-cloud/01.guides/09.google-home/assets/googleHome_2.png
index 8f92d321ef..2ef3029d41 100644
Binary files a/content/arduino-cloud/01.guides/09.google-home/assets/googleHome_2.png and b/content/arduino-cloud/01.guides/09.google-home/assets/googleHome_2.png differ
diff --git a/content/arduino-cloud/01.guides/09.google-home/assets/smartHomeIntegration.png b/content/arduino-cloud/01.guides/09.google-home/assets/smartHomeIntegration.png
index a599a23b1f..d99dc7de9a 100644
Binary files a/content/arduino-cloud/01.guides/09.google-home/assets/smartHomeIntegration.png and b/content/arduino-cloud/01.guides/09.google-home/assets/smartHomeIntegration.png differ
diff --git a/content/arduino-cloud/01.guides/09.google-home/assets/thing.png b/content/arduino-cloud/01.guides/09.google-home/assets/thing.png
index f68e13087a..d0dc225614 100644
Binary files a/content/arduino-cloud/01.guides/09.google-home/assets/thing.png and b/content/arduino-cloud/01.guides/09.google-home/assets/thing.png differ
diff --git a/content/arduino-cloud/01.guides/09.google-home/assets/thingConfig.png b/content/arduino-cloud/01.guides/09.google-home/assets/thingConfig.png
index efd4c23055..6a76fe5b5c 100644
Binary files a/content/arduino-cloud/01.guides/09.google-home/assets/thingConfig.png and b/content/arduino-cloud/01.guides/09.google-home/assets/thingConfig.png differ
diff --git a/content/arduino-cloud/02.hardware/00.cloud-agent/assets/board-connected.png b/content/arduino-cloud/02.hardware/00.cloud-agent/assets/board-connected.png
index b1c2fced10..67a682ca76 100644
Binary files a/content/arduino-cloud/02.hardware/00.cloud-agent/assets/board-connected.png and b/content/arduino-cloud/02.hardware/00.cloud-agent/assets/board-connected.png differ
diff --git a/content/arduino-cloud/02.hardware/00.cloud-agent/assets/install-agent.png b/content/arduino-cloud/02.hardware/00.cloud-agent/assets/install-agent.png
index 4a7997e03e..22801eeb8c 100644
Binary files a/content/arduino-cloud/02.hardware/00.cloud-agent/assets/install-agent.png and b/content/arduino-cloud/02.hardware/00.cloud-agent/assets/install-agent.png differ
diff --git a/content/arduino-cloud/02.hardware/01.devices/assets/device-key.png b/content/arduino-cloud/02.hardware/01.devices/assets/device-key.png
index 1ef74de73f..efb0e2b55f 100644
Binary files a/content/arduino-cloud/02.hardware/01.devices/assets/device-key.png and b/content/arduino-cloud/02.hardware/01.devices/assets/device-key.png differ
diff --git a/content/arduino-cloud/02.hardware/01.devices/assets/device-type.png b/content/arduino-cloud/02.hardware/01.devices/assets/device-type.png
index 7e0793d2db..5a407abf1a 100644
Binary files a/content/arduino-cloud/02.hardware/01.devices/assets/device-type.png and b/content/arduino-cloud/02.hardware/01.devices/assets/device-type.png differ
diff --git a/content/arduino-cloud/02.hardware/02.wifi/assets/device-key.png b/content/arduino-cloud/02.hardware/02.wifi/assets/device-key.png
index b5cc86503b..83f6e5b098 100644
Binary files a/content/arduino-cloud/02.hardware/02.wifi/assets/device-key.png and b/content/arduino-cloud/02.hardware/02.wifi/assets/device-key.png differ
diff --git a/content/arduino-cloud/02.hardware/02.wifi/assets/device-type.png b/content/arduino-cloud/02.hardware/02.wifi/assets/device-type.png
index 7e0793d2db..5a407abf1a 100644
Binary files a/content/arduino-cloud/02.hardware/02.wifi/assets/device-type.png and b/content/arduino-cloud/02.hardware/02.wifi/assets/device-type.png differ
diff --git a/content/arduino-cloud/02.hardware/02.wifi/assets/esp32-supported-boards.png b/content/arduino-cloud/02.hardware/02.wifi/assets/esp32-supported-boards.png
index 29dc2e9778..38ca08c713 100644
Binary files a/content/arduino-cloud/02.hardware/02.wifi/assets/esp32-supported-boards.png and b/content/arduino-cloud/02.hardware/02.wifi/assets/esp32-supported-boards.png differ
diff --git a/content/arduino-cloud/02.hardware/02.wifi/assets/esp32.png b/content/arduino-cloud/02.hardware/02.wifi/assets/esp32.png
index 56bb3a2f2e..ad4826320c 100644
Binary files a/content/arduino-cloud/02.hardware/02.wifi/assets/esp32.png and b/content/arduino-cloud/02.hardware/02.wifi/assets/esp32.png differ
diff --git a/content/arduino-cloud/02.hardware/02.wifi/assets/wifi.png b/content/arduino-cloud/02.hardware/02.wifi/assets/wifi.png
index 7546b31688..05bf671ab6 100644
Binary files a/content/arduino-cloud/02.hardware/02.wifi/assets/wifi.png and b/content/arduino-cloud/02.hardware/02.wifi/assets/wifi.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-gateway-img-01.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-gateway-img-01.png
index aaa8bcdf18..8a11e67d8c 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-gateway-img-01.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-gateway-img-01.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-gateway-img-02.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-gateway-img-02.png
index fff9d97a26..5307bdc0ee 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-gateway-img-02.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-gateway-img-02.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-01.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-01.png
index c6d6809813..160b9a894a 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-01.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-01.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-02.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-02.png
index 01654cb375..372d8ce7e8 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-02.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-02.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-03.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-03.png
index d4abf04963..6e2a2c96f0 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-03.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-03.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-04.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-04.png
index 0a19fc90ca..1be3ea9508 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-04.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-04.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-05.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-05.png
index 2d13bd623a..b967847427 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-05.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-05.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-06.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-06.png
index e34c27a3dd..f15789c84e 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-06.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-06.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-07.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-07.png
index 61fcdac03a..78cdd6bb10 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-07.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-07.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-08.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-08.png
index 527617c4c2..f4104ea7ea 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-08.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-08.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-09.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-09.png
index 3f87ed6882..5f8431b324 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-09.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-09.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-10.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-10.png
index 707355f441..fff8d22758 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-10.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-10.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-11.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-11.png
index 78ffb08891..8beb8d3ace 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-11.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-11.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-12.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-12.png
index 2ef99e9c7e..74e2ce1bd4 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-12.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-12.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-13.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-13.png
index 33eee05aaf..8b85723d4a 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-13.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-13.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-14.5.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-14.5.png
index 8d277beb4b..63a624251d 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-14.5.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-14.5.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-14.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-14.png
index 8034d30eb2..224848b839 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-14.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-14.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-15.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-15.png
index 5a18e89edb..59fb0438da 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-15.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-15.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-16.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-16.png
index cb971a1754..ab4de33687 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-16.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-16.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-17.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-17.png
index 119372bb78..438a4636da 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-17.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-17.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-18.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-18.png
index c32ad0b897..fb5d16e49b 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-18.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-18.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-19.png b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-19.png
index 7c173392c8..658982b15e 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-19.png and b/content/arduino-cloud/02.hardware/03.lora/assets/cloud-lora-img-19.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/assets/lora.png b/content/arduino-cloud/02.hardware/03.lora/assets/lora.png
index b0982dd804..31815bf4dc 100644
Binary files a/content/arduino-cloud/02.hardware/03.lora/assets/lora.png and b/content/arduino-cloud/02.hardware/03.lora/assets/lora.png differ
diff --git a/content/arduino-cloud/02.hardware/03.lora/hero-banner.svg b/content/arduino-cloud/02.hardware/03.lora/hero-banner.svg
index 073477b967..99e3462b4b 100644
--- a/content/arduino-cloud/02.hardware/03.lora/hero-banner.svg
+++ b/content/arduino-cloud/02.hardware/03.lora/hero-banner.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/arduino-cloud/02.hardware/04.ethernet/assets/eth.png b/content/arduino-cloud/02.hardware/04.ethernet/assets/eth.png
index 9b3344b7ad..7673a6af69 100644
Binary files a/content/arduino-cloud/02.hardware/04.ethernet/assets/eth.png and b/content/arduino-cloud/02.hardware/04.ethernet/assets/eth.png differ
diff --git a/content/arduino-cloud/02.hardware/04.ethernet/assets/ethernet-option.png b/content/arduino-cloud/02.hardware/04.ethernet/assets/ethernet-option.png
index 7fa5f1e992..2c3b5a7091 100644
Binary files a/content/arduino-cloud/02.hardware/04.ethernet/assets/ethernet-option.png and b/content/arduino-cloud/02.hardware/04.ethernet/assets/ethernet-option.png differ
diff --git a/content/arduino-cloud/02.hardware/05.cellular/assets/cellular.png b/content/arduino-cloud/02.hardware/05.cellular/assets/cellular.png
index 41f1bada90..ccf0167917 100644
Binary files a/content/arduino-cloud/02.hardware/05.cellular/assets/cellular.png and b/content/arduino-cloud/02.hardware/05.cellular/assets/cellular.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/attach-thing-to-bluetooth.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/attach-thing-to-bluetooth.png
index e1d19b9b05..95f1f997c3 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/attach-thing-to-bluetooth.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/attach-thing-to-bluetooth.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-to-network-bluetooth.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-to-network-bluetooth.png
index 802a9a5880..630d6cfc20 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-to-network-bluetooth.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-to-network-bluetooth.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-with-bluetooth.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-with-bluetooth.png
index 7e6ff6f6cd..0f198d05fb 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-with-bluetooth.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-with-bluetooth.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-with-usb.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-with-usb.png
index 8f1a7b5c3d..a86f69953e 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-with-usb.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connect-with-usb.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connecting-with-usb-loading.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connecting-with-usb-loading.png
index f2444d9293..24a910abf4 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connecting-with-usb-loading.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/connecting-with-usb-loading.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/creating-new-device.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/creating-new-device.png
index fec3687c7e..3cc616c750 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/creating-new-device.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/creating-new-device.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/device-overview-usb.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/device-overview-usb.png
index 8617288f2f..758d813dcb 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/device-overview-usb.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/device-overview-usb.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/migration-process.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/migration-process.png
index bd944b47d0..efec1fa99f 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/migration-process.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/migration-process.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/network-config-device-page.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/network-config-device-page.png
index 2e26a05130..07b9f5377d 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/network-config-device-page.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/network-config-device-page.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/selecting-board-migration.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/selecting-board-migration.png
index 8af6cbeffd..3c3d51eeae 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/selecting-board-migration.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/selecting-board-migration.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/selecting-board-type.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/selecting-board-type.png
index 39d9aea238..da623b31cb 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/selecting-board-type.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/selecting-board-type.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/sketch-tab.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/sketch-tab.png
index d8f04fd1e3..d365346e1d 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/sketch-tab.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/sketch-tab.png differ
diff --git a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/succesfull-connection-with-usb.png b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/succesfull-connection-with-usb.png
index 33238148d9..c94ab8a951 100644
Binary files a/content/arduino-cloud/02.hardware/06.device-provisioning/assets/succesfull-connection-with-usb.png and b/content/arduino-cloud/02.hardware/06.device-provisioning/assets/succesfull-connection-with-usb.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/00.sketches/assets/sketch.png b/content/arduino-cloud/03.cloud-interface/00.sketches/assets/sketch.png
index 10fe81461b..79dcef4434 100644
Binary files a/content/arduino-cloud/03.cloud-interface/00.sketches/assets/sketch.png and b/content/arduino-cloud/03.cloud-interface/00.sketches/assets/sketch.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/01.things/assets/built-in-editor.png b/content/arduino-cloud/03.cloud-interface/01.things/assets/built-in-editor.png
index e0b02bc675..05beeb8eb1 100644
Binary files a/content/arduino-cloud/03.cloud-interface/01.things/assets/built-in-editor.png and b/content/arduino-cloud/03.cloud-interface/01.things/assets/built-in-editor.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/01.things/assets/netowrk-settings-device-page.png b/content/arduino-cloud/03.cloud-interface/01.things/assets/netowrk-settings-device-page.png
index 2e26a05130..07b9f5377d 100644
Binary files a/content/arduino-cloud/03.cloud-interface/01.things/assets/netowrk-settings-device-page.png and b/content/arduino-cloud/03.cloud-interface/01.things/assets/netowrk-settings-device-page.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/01.things/assets/network-creds.png b/content/arduino-cloud/03.cloud-interface/01.things/assets/network-creds.png
index c68affe906..4b67f2fe50 100644
Binary files a/content/arduino-cloud/03.cloud-interface/01.things/assets/network-creds.png and b/content/arduino-cloud/03.cloud-interface/01.things/assets/network-creds.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/01.things/assets/tags.png b/content/arduino-cloud/03.cloud-interface/01.things/assets/tags.png
index d2c356c262..ad8dab3877 100644
Binary files a/content/arduino-cloud/03.cloud-interface/01.things/assets/tags.png and b/content/arduino-cloud/03.cloud-interface/01.things/assets/tags.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/01.things/assets/thing-interface.png b/content/arduino-cloud/03.cloud-interface/01.things/assets/thing-interface.png
index 15a6c5eb36..c6ece7d02b 100644
Binary files a/content/arduino-cloud/03.cloud-interface/01.things/assets/thing-interface.png and b/content/arduino-cloud/03.cloud-interface/01.things/assets/thing-interface.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/02.variables/assets/add-variables.png b/content/arduino-cloud/03.cloud-interface/02.variables/assets/add-variables.png
index 836fef2af3..c2c535d17e 100644
Binary files a/content/arduino-cloud/03.cloud-interface/02.variables/assets/add-variables.png and b/content/arduino-cloud/03.cloud-interface/02.variables/assets/add-variables.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/02.variables/assets/example.png b/content/arduino-cloud/03.cloud-interface/02.variables/assets/example.png
index ef276c72f1..2c43587ef1 100644
Binary files a/content/arduino-cloud/03.cloud-interface/02.variables/assets/example.png and b/content/arduino-cloud/03.cloud-interface/02.variables/assets/example.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/02.variables/assets/variable-sync-2.png b/content/arduino-cloud/03.cloud-interface/02.variables/assets/variable-sync-2.png
index 0b03bbc9f7..53a940f9cb 100644
Binary files a/content/arduino-cloud/03.cloud-interface/02.variables/assets/variable-sync-2.png and b/content/arduino-cloud/03.cloud-interface/02.variables/assets/variable-sync-2.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/02.variables/assets/variable-sync.png b/content/arduino-cloud/03.cloud-interface/02.variables/assets/variable-sync.png
index 14a921098f..a01299a288 100644
Binary files a/content/arduino-cloud/03.cloud-interface/02.variables/assets/variable-sync.png and b/content/arduino-cloud/03.cloud-interface/02.variables/assets/variable-sync.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/02.variables/hero-banner.png b/content/arduino-cloud/03.cloud-interface/02.variables/hero-banner.png
index c6b31538ab..3f6b3d7300 100644
Binary files a/content/arduino-cloud/03.cloud-interface/02.variables/hero-banner.png and b/content/arduino-cloud/03.cloud-interface/02.variables/hero-banner.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/dashboard.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/dashboard.png
index 1c23cc2e51..4171ee0d43 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/dashboard.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/dashboard.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/edit-view-mobile.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/edit-view-mobile.png
index 18f489f3ec..0e65372b25 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/edit-view-mobile.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/edit-view-mobile.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-bool-trigger.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-bool-trigger.png
index aeddcadd2a..ee34d1f553 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-bool-trigger.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-bool-trigger.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-int-trigger.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-int-trigger.png
index 20753a5f11..73d13ee5ed 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-int-trigger.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-int-trigger.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-markers.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-markers.png
index 0a73806ad0..9f6e718339 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-markers.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/image-map-markers.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/link-widget-options.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/link-widget-options.png
index d7f3bba3b3..fa10d322d9 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/link-widget-options.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/link-widget-options.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/link-widget.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/link-widget.png
index 915e07c74c..9f442ed3d1 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/link-widget.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/link-widget.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/scaling.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/scaling.png
index 1ae857ad16..fc3c286a2a 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/scaling.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/scaling.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/share-dashboard.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/share-dashboard.png
index 44eb3d6291..b07a4ab71e 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/share-dashboard.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/share-dashboard.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/time-picker.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/time-picker.png
index 74d379bc94..68715830ea 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/time-picker.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/time-picker.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-chart-2.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-chart-2.png
index 5a142654a4..4480ee73c6 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-chart-2.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-chart-2.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-chart.gif b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-chart.gif
index 45bbcbbf31..03097c458e 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-chart.gif and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-chart.gif differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-map.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-map.png
index 1cad632468..d28ef63fc3 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-map.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-advanced-map.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-chart.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-chart.png
index 68a3da6a5e..a903646ba0 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-chart.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-chart.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-color-light.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-color-light.png
index 38c0d94169..6bd8801af0 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-color-light.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-color-light.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-color.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-color.png
index 72b98e6201..531876241b 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-color.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-color.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-dimmed-light.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-dimmed-light.png
index 0b5a960d69..c5ca7d3a85 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-dimmed-light.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-dimmed-light.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-dropdown.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-dropdown.png
index 3e5d457471..57f4cb0199 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-dropdown.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-dropdown.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-gauge.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-gauge.png
index 1876fcdefb..af40d5fe8a 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-gauge.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-gauge.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-image.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-image.png
index 0830d7b6fa..02faa66459 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-image.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-image.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-led.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-led.png
index e1a4e0e47e..588a847683 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-led.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-led.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-map.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-map.png
index 6f028c681f..330ac2e353 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-map.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-map.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-messenger.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-messenger.png
index 77672303f2..4bb82e0b0f 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-messenger.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-messenger.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-percentage-1.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-percentage-1.png
index c7dac4e42a..dee8e79428 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-percentage-1.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-percentage-1.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-percentage-2.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-percentage-2.png
index 626d4c63d2..125f8725e8 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-percentage-2.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-percentage-2.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-pushbutton.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-pushbutton.png
index ee08f3b153..beae25bafd 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-pushbutton.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-pushbutton.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-scheduler.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-scheduler.png
index 94f29c241d..03c206552f 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-scheduler.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-scheduler.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-slider.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-slider.png
index acd05b5395..9b18a7afff 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-slider.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-slider.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-status.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-status.png
index 782b412b12..88a27468b6 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-status.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-status.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-stepper.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-stepper.png
index 4fe6d3e347..1109ab0749 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-stepper.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-stepper.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-sticky-note.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-sticky-note.png
index 8d1ca60b12..76eac0d374 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-sticky-note.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-sticky-note.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-switch.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-switch.png
index 378cc5310f..adf5f7579a 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-switch.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-switch.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-value-picker.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-value-picker.png
index 90b8b64ac9..05c0a427f8 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-value-picker.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-value-picker.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-value.png b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-value.png
index de78f0435a..e35de0dc67 100644
Binary files a/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-value.png and b/content/arduino-cloud/03.cloud-interface/03.dashboard-widgets/assets/widget-value.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/activateTrigger.png b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/activateTrigger.png
index 7601ee97d6..64d51523e2 100644
Binary files a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/activateTrigger.png and b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/activateTrigger.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/addTrigger.png b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/addTrigger.png
index b073e5dab7..98969407e8 100644
Binary files a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/addTrigger.png and b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/addTrigger.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/emailForm.png b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/emailForm.png
index 0fd0ae35e4..0196e76c85 100644
Binary files a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/emailForm.png and b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/emailForm.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/linkVariable.png b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/linkVariable.png
index afe6119c12..22a1d3624a 100644
Binary files a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/linkVariable.png and b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/linkVariable.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/selectAction.png b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/selectAction.png
index 8f23676b69..83f9cd6ce9 100644
Binary files a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/selectAction.png and b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/selectAction.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/selectVariable.png b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/selectVariable.png
index 4a29655645..05fb402723 100644
Binary files a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/selectVariable.png and b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/selectVariable.png differ
diff --git a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/triggerHomepage.png b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/triggerHomepage.png
index d0ea06bfbf..2c5d27d57d 100644
Binary files a/content/arduino-cloud/03.cloud-interface/04.triggers/assets/triggerHomepage.png and b/content/arduino-cloud/03.cloud-interface/04.triggers/assets/triggerHomepage.png differ
diff --git a/content/arduino-cloud/04.cloud-editor/embedding-create-iframes/assets/Embed_1.png b/content/arduino-cloud/04.cloud-editor/embedding-create-iframes/assets/Embed_1.png
index 79b7e3961e..3e085167cf 100644
Binary files a/content/arduino-cloud/04.cloud-editor/embedding-create-iframes/assets/Embed_1.png and b/content/arduino-cloud/04.cloud-editor/embedding-create-iframes/assets/Embed_1.png differ
diff --git a/content/arduino-cloud/04.cloud-editor/embedding-create-iframes/assets/Share_1.png b/content/arduino-cloud/04.cloud-editor/embedding-create-iframes/assets/Share_1.png
index 48b26e76f9..faf418990f 100644
Binary files a/content/arduino-cloud/04.cloud-editor/embedding-create-iframes/assets/Share_1.png and b/content/arduino-cloud/04.cloud-editor/embedding-create-iframes/assets/Share_1.png differ
diff --git a/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/custom_library_1.png b/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/custom_library_1.png
index 4938d92844..4395ba4e5f 100644
Binary files a/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/custom_library_1.png and b/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/custom_library_1.png differ
diff --git a/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_1.png b/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_1.png
index 0c752229ee..218da8c1d9 100644
Binary files a/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_1.png and b/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_1.png differ
diff --git a/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_2.png b/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_2.png
index ec82f85ffc..8ac4b169c5 100644
Binary files a/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_2.png and b/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_2.png differ
diff --git a/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_3.png b/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_3.png
index 1fc1d66065..71c45b7f17 100644
Binary files a/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_3.png and b/content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/assets/import_3.png differ
diff --git a/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_1.png b/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_1.png
index 3c994a6388..619c632de0 100644
Binary files a/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_1.png and b/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_1.png differ
diff --git a/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_2.png b/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_2.png
index 4b9ff870a9..4644d7ee5e 100644
Binary files a/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_2.png and b/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_2.png differ
diff --git a/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_3.png b/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_3.png
index 65df9928b2..6cb4a91009 100644
Binary files a/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_3.png and b/content/arduino-cloud/04.cloud-editor/store-your-sensitive-data-safely-when-sharing/assets/add_secret_3.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/app-theme.png b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/app-theme.png
index 5c3a089842..c60fc2d1a1 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/app-theme.png and b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/app-theme.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/edit-dashbaord.png b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/edit-dashbaord.png
index 69f4e6daf6..5e58381749 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/edit-dashbaord.png and b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/edit-dashbaord.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/overview.png b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/overview.png
index 316d83aa52..31f86e1bc0 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/overview.png and b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/overview.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-activate-bkg-mode.png b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-activate-bkg-mode.png
index 74bd169ba8..1133dca07f 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-activate-bkg-mode.png and b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-activate-bkg-mode.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-cloud-variables.png b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-cloud-variables.png
index fc6e4d45f9..fc7ec3e748 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-cloud-variables.png and b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-cloud-variables.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-dashboard.png b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-dashboard.png
index 61792785f3..83313af7db 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-dashboard.png and b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-dashboard.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-overview.png b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-overview.png
index ed39764580..25dc2d9305 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-overview.png and b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-overview.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-setup.png b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-setup.png
index 42d9136cec..1984cb3025 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-setup.png and b/content/arduino-cloud/05.iot-remote-app/01.getting-started/assets/remote-app-setup.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/01.getting-started/hero-banner.png b/content/arduino-cloud/05.iot-remote-app/01.getting-started/hero-banner.png
index 652cf07551..32e6ce4045 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/01.getting-started/hero-banner.png and b/content/arduino-cloud/05.iot-remote-app/01.getting-started/hero-banner.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/dashboard.png b/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/dashboard.png
index 9babf1109f..a395284360 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/dashboard.png and b/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/dashboard.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/dashboards.png b/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/dashboards.png
index d9860585a3..eab3b8f640 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/dashboards.png and b/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/dashboards.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/expected-outcome.gif b/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/expected-outcome.gif
index 8b735e03db..0926fa1714 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/expected-outcome.gif and b/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/expected-outcome.gif differ
diff --git a/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/variablesync.png b/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/variablesync.png
index a75b166a5f..f842bab621 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/variablesync.png and b/content/arduino-cloud/05.iot-remote-app/02.iot-remote-phone-sensors/assets/variablesync.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/disable-enable.png b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/disable-enable.png
index b3f5075ad6..55daff2df8 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/disable-enable.png and b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/disable-enable.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/iot-remote-setup.png b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/iot-remote-setup.png
index a7aff48146..86aaf152fa 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/iot-remote-setup.png and b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/iot-remote-setup.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/notifications.png b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/notifications.png
index b8f721ace6..f5ee423024 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/notifications.png and b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/notifications.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/thing-setup.png b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/thing-setup.png
index dd7cd0248a..7dbe649af2 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/thing-setup.png and b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/thing-setup.png differ
diff --git a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/trigger-setup.png b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/trigger-setup.png
index 5a0bf1ff9d..4d7f4a52ab 100644
Binary files a/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/trigger-setup.png and b/content/arduino-cloud/05.iot-remote-app/03.push-notifications/assets/trigger-setup.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/add-widget.png b/content/arduino-cloud/06.features/01.templates/assets/add-widget.png
index ed05f7fb87..e6fb1acd87 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/add-widget.png and b/content/arduino-cloud/06.features/01.templates/assets/add-widget.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/associated-thing.png b/content/arduino-cloud/06.features/01.templates/assets/associated-thing.png
index db55a16cab..5a62d1e9dd 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/associated-thing.png and b/content/arduino-cloud/06.features/01.templates/assets/associated-thing.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/edit-icon.png b/content/arduino-cloud/06.features/01.templates/assets/edit-icon.png
index 259248a165..7497c71715 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/edit-icon.png and b/content/arduino-cloud/06.features/01.templates/assets/edit-icon.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/not-enough.png b/content/arduino-cloud/06.features/01.templates/assets/not-enough.png
index d93f4654d0..53eb479a77 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/not-enough.png and b/content/arduino-cloud/06.features/01.templates/assets/not-enough.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/select-cloud-blink.png b/content/arduino-cloud/06.features/01.templates/assets/select-cloud-blink.png
index d98b014481..728bc34944 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/select-cloud-blink.png and b/content/arduino-cloud/06.features/01.templates/assets/select-cloud-blink.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/sidebar.png b/content/arduino-cloud/06.features/01.templates/assets/sidebar.png
index 584f8361cd..36eeba2a64 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/sidebar.png and b/content/arduino-cloud/06.features/01.templates/assets/sidebar.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/template-creation.png b/content/arduino-cloud/06.features/01.templates/assets/template-creation.png
index 7e920ca606..2ccb188826 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/template-creation.png and b/content/arduino-cloud/06.features/01.templates/assets/template-creation.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/template-dashboard.png b/content/arduino-cloud/06.features/01.templates/assets/template-dashboard.png
index 2afe950f44..2fb4482b6a 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/template-dashboard.png and b/content/arduino-cloud/06.features/01.templates/assets/template-dashboard.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/template-description.png b/content/arduino-cloud/06.features/01.templates/assets/template-description.png
index 25edd6f8fb..eddf3d1c1e 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/template-description.png and b/content/arduino-cloud/06.features/01.templates/assets/template-description.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/template-gallery.png b/content/arduino-cloud/06.features/01.templates/assets/template-gallery.png
index a8e11bfd26..d2d024e156 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/template-gallery.png and b/content/arduino-cloud/06.features/01.templates/assets/template-gallery.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/templatesexamples.jpg b/content/arduino-cloud/06.features/01.templates/assets/templatesexamples.jpg
index 09ca6770a2..12322cd812 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/templatesexamples.jpg and b/content/arduino-cloud/06.features/01.templates/assets/templatesexamples.jpg differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/thing-information.png b/content/arduino-cloud/06.features/01.templates/assets/thing-information.png
index 35d92f44ff..6ca53645f1 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/thing-information.png and b/content/arduino-cloud/06.features/01.templates/assets/thing-information.png differ
diff --git a/content/arduino-cloud/06.features/01.templates/assets/use-a-template.png b/content/arduino-cloud/06.features/01.templates/assets/use-a-template.png
index 5a10e4608a..c7ebe751a0 100644
Binary files a/content/arduino-cloud/06.features/01.templates/assets/use-a-template.png and b/content/arduino-cloud/06.features/01.templates/assets/use-a-template.png differ
diff --git a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-01.png b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-01.png
index c8e8a5d82b..8ec157d8da 100644
Binary files a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-01.png and b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-01.png differ
diff --git a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-02.png b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-02.png
index defdb6c201..bc1b728795 100644
Binary files a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-02.png and b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-02.png differ
diff --git a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-03.png b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-03.png
index becfc6634f..2174e4a27a 100644
Binary files a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-03.png and b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-03.png differ
diff --git a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-04.png b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-04.png
index 70dc120b11..43e87708e4 100644
Binary files a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-04.png and b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-04.png differ
diff --git a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-05.png b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-05.png
index 1ff3c7041c..ac05f1c0f5 100644
Binary files a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-05.png and b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-05.png differ
diff --git a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-06.png b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-06.png
index 7e78b7b2d3..3918157e16 100644
Binary files a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-06.png and b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-06.png differ
diff --git a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-timezone.png b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-timezone.png
index 44d220c807..8c0842e068 100644
Binary files a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-timezone.png and b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/cloud-scheduler-img-timezone.png differ
diff --git a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/scheduler-action.gif b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/scheduler-action.gif
index 6299f1f626..4e7f5279e7 100644
Binary files a/content/arduino-cloud/06.features/02.cloud-scheduler/assets/scheduler-action.gif and b/content/arduino-cloud/06.features/02.cloud-scheduler/assets/scheduler-action.gif differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-01.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-01.png
index 1a339e1f45..408eb7ca5c 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-01.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-01.png differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-02-1.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-02-1.png
index 8cce1f078c..cfd7e617f4 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-02-1.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-02-1.png differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-02.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-02.png
index cc64bcf68e..cc3bd41d70 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-02.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-02.png differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-03.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-03.png
index 03ba4c6930..180870d616 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-03.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-03.png differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-04.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-04.png
index cf8a3c20fb..27b8ddf0ac 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-04.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-04.png differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-05.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-05.png
index 717b8a9a2d..834f8319e5 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-05.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-05.png differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-06.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-06.png
index 4031673ae3..3a5492bbfd 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-06.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-06.png differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-07.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-07.png
index 08c865fcdd..2bf2b47e5b 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-07.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-07.png differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-09.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-09.png
index 1b823df8fe..5e2d3fd762 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-09.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-09.png differ
diff --git a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-10.png b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-10.png
index 7d338659e2..27b29560f7 100644
Binary files a/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-10.png and b/content/arduino-cloud/06.features/03.device-to-device/assets/device-to-device-img-10.png differ
diff --git a/content/arduino-cloud/06.features/04.ota-getting-started/assets/OtA_board_selection.png b/content/arduino-cloud/06.features/04.ota-getting-started/assets/OtA_board_selection.png
index 446989d01e..a453b2b06e 100644
Binary files a/content/arduino-cloud/06.features/04.ota-getting-started/assets/OtA_board_selection.png and b/content/arduino-cloud/06.features/04.ota-getting-started/assets/OtA_board_selection.png differ
diff --git a/content/arduino-cloud/06.features/04.ota-getting-started/assets/adding_variable.png b/content/arduino-cloud/06.features/04.ota-getting-started/assets/adding_variable.png
index cd1d51adef..581480ef19 100644
Binary files a/content/arduino-cloud/06.features/04.ota-getting-started/assets/adding_variable.png and b/content/arduino-cloud/06.features/04.ota-getting-started/assets/adding_variable.png differ
diff --git a/content/arduino-cloud/06.features/04.ota-getting-started/assets/dashboard_widget.png b/content/arduino-cloud/06.features/04.ota-getting-started/assets/dashboard_widget.png
index d83a33ee5d..e234899514 100644
Binary files a/content/arduino-cloud/06.features/04.ota-getting-started/assets/dashboard_widget.png and b/content/arduino-cloud/06.features/04.ota-getting-started/assets/dashboard_widget.png differ
diff --git a/content/arduino-cloud/06.features/04.ota-getting-started/assets/device_OtA.png b/content/arduino-cloud/06.features/04.ota-getting-started/assets/device_OtA.png
index 1668563283..ec0e2d3728 100644
Binary files a/content/arduino-cloud/06.features/04.ota-getting-started/assets/device_OtA.png and b/content/arduino-cloud/06.features/04.ota-getting-started/assets/device_OtA.png differ
diff --git a/content/arduino-cloud/06.features/04.ota-getting-started/assets/final_dashboard.png b/content/arduino-cloud/06.features/04.ota-getting-started/assets/final_dashboard.png
index c0d692905b..3363fc64c9 100644
Binary files a/content/arduino-cloud/06.features/04.ota-getting-started/assets/final_dashboard.png and b/content/arduino-cloud/06.features/04.ota-getting-started/assets/final_dashboard.png differ
diff --git a/content/arduino-cloud/06.features/04.ota-getting-started/assets/iot_cloud_grid.png b/content/arduino-cloud/06.features/04.ota-getting-started/assets/iot_cloud_grid.png
index e5ded9ca6e..a08243367b 100644
Binary files a/content/arduino-cloud/06.features/04.ota-getting-started/assets/iot_cloud_grid.png and b/content/arduino-cloud/06.features/04.ota-getting-started/assets/iot_cloud_grid.png differ
diff --git a/content/arduino-cloud/06.features/04.ota-getting-started/assets/ota-supported-boards.png b/content/arduino-cloud/06.features/04.ota-getting-started/assets/ota-supported-boards.png
index 32e662f15a..93a0a79d0f 100644
Binary files a/content/arduino-cloud/06.features/04.ota-getting-started/assets/ota-supported-boards.png and b/content/arduino-cloud/06.features/04.ota-getting-started/assets/ota-supported-boards.png differ
diff --git a/content/arduino-cloud/06.features/04.ota-getting-started/assets/other_power_supplier.png b/content/arduino-cloud/06.features/04.ota-getting-started/assets/other_power_supplier.png
index 7f5e1571f5..34f660d1b7 100644
Binary files a/content/arduino-cloud/06.features/04.ota-getting-started/assets/other_power_supplier.png and b/content/arduino-cloud/06.features/04.ota-getting-started/assets/other_power_supplier.png differ
diff --git a/content/arduino-cloud/06.features/04.ota-getting-started/assets/select_device.png b/content/arduino-cloud/06.features/04.ota-getting-started/assets/select_device.png
index 3fa4f878f1..aa95012747 100644
Binary files a/content/arduino-cloud/06.features/04.ota-getting-started/assets/select_device.png and b/content/arduino-cloud/06.features/04.ota-getting-started/assets/select_device.png differ
diff --git a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img01.png b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img01.png
index 893017ded2..3a45730f39 100644
Binary files a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img01.png and b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img01.png differ
diff --git a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img02.png b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img02.png
index 6f2648bf36..7a986ea743 100644
Binary files a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img02.png and b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img02.png differ
diff --git a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img03.png b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img03.png
index 6a6f641ed9..7cd7da3fab 100644
Binary files a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img03.png and b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img03.png differ
diff --git a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img04.png b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img04.png
index be62a8cf9e..2d354897e2 100644
Binary files a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img04.png and b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img04.png differ
diff --git a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img05.png b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img05.png
index e2bb8db836..79c42322cb 100644
Binary files a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img05.png and b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img05.png differ
diff --git a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img06.png b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img06.png
index 5880c44a58..5a07c7d680 100644
Binary files a/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img06.png and b/content/arduino-cloud/06.features/05.sharing-dashboards/assets/cloud-sharing-dashboards-img06.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/dashboard_motion.gif b/content/arduino-cloud/06.features/06.thing-to-thing/assets/dashboard_motion.gif
index 251cb2b04d..bcfd84a828 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/dashboard_motion.gif and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/dashboard_motion.gif differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-circuit.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-circuit.png
index 066ab2d358..ac0036ae35 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-circuit.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-circuit.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-00.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-00.png
index d3cdecee0e..5cf58c48ef 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-00.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-00.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-01.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-01.png
index c308458394..06b5959404 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-01.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-01.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-02.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-02.png
index 08fc651dfe..e510f89b1c 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-02.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-02.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-03.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-03.png
index 9dd0058e0f..b070474cfc 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-03.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-03.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-04.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-04.png
index 64333504a1..df9d72c30f 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-04.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-04.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-05.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-05.png
index 359c7d4cf6..d9de392abe 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-05.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-05.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-06.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-06.png
index 2e1f888792..7c106a26d9 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-06.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-06.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-07.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-07.png
index f253cc3e43..b7ef296839 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-07.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-07.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-08.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-08.png
index 9bd70daa62..0114ebf1bf 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-08.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-08.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-09.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-09.png
index 2766ebfb09..69f8e0b822 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-09.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-09.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-10.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-10.png
index df20a4e506..4b90e8f0ee 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-10.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-10.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-11.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-11.png
index b5f5e7d3ad..e311ee4a51 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-11.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-11.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-12.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-12.png
index ed154c581f..c5d63ead86 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-12.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-12.png differ
diff --git a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-13.png b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-13.png
index 05106fe520..3382d2e420 100644
Binary files a/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-13.png and b/content/arduino-cloud/06.features/06.thing-to-thing/assets/thing-to-thing-img-13.png differ
diff --git a/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-confirmation.png b/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-confirmation.png
index bd00d7b793..15996ee4a7 100644
Binary files a/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-confirmation.png and b/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-confirmation.png differ
diff --git a/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-dashboard.png b/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-dashboard.png
index de7d873de7..a70b9e70cf 100644
Binary files a/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-dashboard.png and b/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-dashboard.png differ
diff --git a/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-selecting-variable.png b/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-selecting-variable.png
index 95332a5faa..c4559ff39e 100644
Binary files a/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-selecting-variable.png and b/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data-selecting-variable.png differ
diff --git a/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data.png b/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data.png
index c61e6983ca..ec60daa59d 100644
Binary files a/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data.png and b/content/arduino-cloud/06.features/08.iot-cloud-historical-data/assets/cloud-historical-data.png differ
diff --git a/content/arduino-cloud/06.features/08.manual-device/assets/api-key.png b/content/arduino-cloud/06.features/08.manual-device/assets/api-key.png
index e58e7138d1..b7ae746c0b 100644
Binary files a/content/arduino-cloud/06.features/08.manual-device/assets/api-key.png and b/content/arduino-cloud/06.features/08.manual-device/assets/api-key.png differ
diff --git a/content/arduino-cloud/06.features/08.manual-device/assets/configure-manual-device.png b/content/arduino-cloud/06.features/08.manual-device/assets/configure-manual-device.png
index fe068bbcbf..4fa63d6405 100644
Binary files a/content/arduino-cloud/06.features/08.manual-device/assets/configure-manual-device.png and b/content/arduino-cloud/06.features/08.manual-device/assets/configure-manual-device.png differ
diff --git a/content/arduino-cloud/06.features/09.advanced-chart/assets/advanced-chart-toggle.gif b/content/arduino-cloud/06.features/09.advanced-chart/assets/advanced-chart-toggle.gif
index 45bbcbbf31..03097c458e 100644
Binary files a/content/arduino-cloud/06.features/09.advanced-chart/assets/advanced-chart-toggle.gif and b/content/arduino-cloud/06.features/09.advanced-chart/assets/advanced-chart-toggle.gif differ
diff --git a/content/arduino-cloud/06.features/09.advanced-chart/assets/advanced-chart.gif b/content/arduino-cloud/06.features/09.advanced-chart/assets/advanced-chart.gif
index cd643cea24..60fa5b83aa 100644
Binary files a/content/arduino-cloud/06.features/09.advanced-chart/assets/advanced-chart.gif and b/content/arduino-cloud/06.features/09.advanced-chart/assets/advanced-chart.gif differ
diff --git a/content/arduino-cloud/06.features/09.advanced-chart/assets/light-tracking.png b/content/arduino-cloud/06.features/09.advanced-chart/assets/light-tracking.png
index c10433a7b1..9f8aa9d360 100644
Binary files a/content/arduino-cloud/06.features/09.advanced-chart/assets/light-tracking.png and b/content/arduino-cloud/06.features/09.advanced-chart/assets/light-tracking.png differ
diff --git a/content/arduino-cloud/06.features/09.advanced-chart/assets/select-time-date.png b/content/arduino-cloud/06.features/09.advanced-chart/assets/select-time-date.png
index 3402a105a9..e79a7f0f10 100644
Binary files a/content/arduino-cloud/06.features/09.advanced-chart/assets/select-time-date.png and b/content/arduino-cloud/06.features/09.advanced-chart/assets/select-time-date.png differ
diff --git a/content/arduino-cloud/06.features/09.advanced-chart/assets/select-variables.png b/content/arduino-cloud/06.features/09.advanced-chart/assets/select-variables.png
index da22de694f..78f6a16281 100644
Binary files a/content/arduino-cloud/06.features/09.advanced-chart/assets/select-variables.png and b/content/arduino-cloud/06.features/09.advanced-chart/assets/select-variables.png differ
diff --git a/content/arduino-cloud/06.features/09.advanced-chart/assets/widget-config.png b/content/arduino-cloud/06.features/09.advanced-chart/assets/widget-config.png
index 5a142654a4..4480ee73c6 100644
Binary files a/content/arduino-cloud/06.features/09.advanced-chart/assets/widget-config.png and b/content/arduino-cloud/06.features/09.advanced-chart/assets/widget-config.png differ
diff --git a/content/arduino-cloud/06.features/09.advanced-chart/hero-banner.png b/content/arduino-cloud/06.features/09.advanced-chart/hero-banner.png
index c4d278fbc4..c81bbc2383 100644
Binary files a/content/arduino-cloud/06.features/09.advanced-chart/hero-banner.png and b/content/arduino-cloud/06.features/09.advanced-chart/hero-banner.png differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/creating-an-applet.gif b/content/arduino-cloud/06.features/11.webhooks/assets/creating-an-applet.gif
index 3d79c96152..4f74f5f780 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/creating-an-applet.gif and b/content/arduino-cloud/06.features/11.webhooks/assets/creating-an-applet.gif differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/ezgif.com-crop.gif b/content/arduino-cloud/06.features/11.webhooks/assets/ezgif.com-crop.gif
index 4705829e14..6b42968c23 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/ezgif.com-crop.gif and b/content/arduino-cloud/06.features/11.webhooks/assets/ezgif.com-crop.gif differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/finding-webhook-link.png b/content/arduino-cloud/06.features/11.webhooks/assets/finding-webhook-link.png
index 9722013ceb..ac4d730b6d 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/finding-webhook-link.png and b/content/arduino-cloud/06.features/11.webhooks/assets/finding-webhook-link.png differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/setting-a-webhook.gif b/content/arduino-cloud/06.features/11.webhooks/assets/setting-a-webhook.gif
index eca8a8cb74..ce8484f218 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/setting-a-webhook.gif and b/content/arduino-cloud/06.features/11.webhooks/assets/setting-a-webhook.gif differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/webhook-dashboard-sheets.gif b/content/arduino-cloud/06.features/11.webhooks/assets/webhook-dashboard-sheets.gif
index d555749f89..4daf255df9 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/webhook-dashboard-sheets.gif and b/content/arduino-cloud/06.features/11.webhooks/assets/webhook-dashboard-sheets.gif differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/webhook-dashboard.gif b/content/arduino-cloud/06.features/11.webhooks/assets/webhook-dashboard.gif
index ac1c4cff9e..67ac026702 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/webhook-dashboard.gif and b/content/arduino-cloud/06.features/11.webhooks/assets/webhook-dashboard.gif differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-01.png b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-01.png
index 12968c0582..e93a9a2d81 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-01.png and b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-01.png differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-02.png b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-02.png
index 854c45aa9d..552eb04694 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-02.png and b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-02.png differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-03.png b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-03.png
index b9e223239a..e01de4d802 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-03.png and b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-03.png differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-04.png b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-04.png
index 13ff930ad6..343de932c3 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-04.png and b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-04.png differ
diff --git a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-05.png b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-05.png
index e5b79c4c7c..32d58904c7 100644
Binary files a/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-05.png and b/content/arduino-cloud/06.features/11.webhooks/assets/webhooks-05.png differ
diff --git a/content/arduino-cloud/06.features/12.advanced-map/assets/location-tracking.gif b/content/arduino-cloud/06.features/12.advanced-map/assets/location-tracking.gif
index c17839b005..b59d55143a 100644
Binary files a/content/arduino-cloud/06.features/12.advanced-map/assets/location-tracking.gif and b/content/arduino-cloud/06.features/12.advanced-map/assets/location-tracking.gif differ
diff --git a/content/arduino-cloud/06.features/12.advanced-map/assets/select-variable.png b/content/arduino-cloud/06.features/12.advanced-map/assets/select-variable.png
index 379fd54d48..32b68c763e 100644
Binary files a/content/arduino-cloud/06.features/12.advanced-map/assets/select-variable.png and b/content/arduino-cloud/06.features/12.advanced-map/assets/select-variable.png differ
diff --git a/content/arduino-cloud/06.features/12.advanced-map/assets/set-time-frame.png b/content/arduino-cloud/06.features/12.advanced-map/assets/set-time-frame.png
index 9d334266bf..b19bcc7778 100644
Binary files a/content/arduino-cloud/06.features/12.advanced-map/assets/set-time-frame.png and b/content/arduino-cloud/06.features/12.advanced-map/assets/set-time-frame.png differ
diff --git a/content/arduino-cloud/06.features/12.advanced-map/assets/widget-config.png b/content/arduino-cloud/06.features/12.advanced-map/assets/widget-config.png
index c4cf4f5713..770efc5eb2 100644
Binary files a/content/arduino-cloud/06.features/12.advanced-map/assets/widget-config.png and b/content/arduino-cloud/06.features/12.advanced-map/assets/widget-config.png differ
diff --git a/content/arduino-cloud/06.features/12.advanced-map/assets/world-map.gif b/content/arduino-cloud/06.features/12.advanced-map/assets/world-map.gif
index d95b434459..38c5a6588c 100644
Binary files a/content/arduino-cloud/06.features/12.advanced-map/assets/world-map.gif and b/content/arduino-cloud/06.features/12.advanced-map/assets/world-map.gif differ
diff --git a/content/arduino-cloud/06.features/13.custom-templates/assets/ISDashboard.png b/content/arduino-cloud/06.features/13.custom-templates/assets/ISDashboard.png
index 4a8bc11c3a..f381bd6900 100644
Binary files a/content/arduino-cloud/06.features/13.custom-templates/assets/ISDashboard.png and b/content/arduino-cloud/06.features/13.custom-templates/assets/ISDashboard.png differ
diff --git a/content/arduino-cloud/06.features/13.custom-templates/assets/cloudinterfacetemplates.png b/content/arduino-cloud/06.features/13.custom-templates/assets/cloudinterfacetemplates.png
index 584f8361cd..36eeba2a64 100644
Binary files a/content/arduino-cloud/06.features/13.custom-templates/assets/cloudinterfacetemplates.png and b/content/arduino-cloud/06.features/13.custom-templates/assets/cloudinterfacetemplates.png differ
diff --git a/content/arduino-cloud/06.features/13.custom-templates/assets/description.png b/content/arduino-cloud/06.features/13.custom-templates/assets/description.png
index 437b5565cb..11592a65bf 100644
Binary files a/content/arduino-cloud/06.features/13.custom-templates/assets/description.png and b/content/arduino-cloud/06.features/13.custom-templates/assets/description.png differ
diff --git a/content/arduino-cloud/06.features/13.custom-templates/assets/newtemplate.png b/content/arduino-cloud/06.features/13.custom-templates/assets/newtemplate.png
index af044a8733..33f3cdbd29 100644
Binary files a/content/arduino-cloud/06.features/13.custom-templates/assets/newtemplate.png and b/content/arduino-cloud/06.features/13.custom-templates/assets/newtemplate.png differ
diff --git a/content/arduino-cloud/06.features/13.custom-templates/assets/selectingThing.png b/content/arduino-cloud/06.features/13.custom-templates/assets/selectingThing.png
index a900a64d22..4a4313ccf3 100644
Binary files a/content/arduino-cloud/06.features/13.custom-templates/assets/selectingThing.png and b/content/arduino-cloud/06.features/13.custom-templates/assets/selectingThing.png differ
diff --git a/content/arduino-cloud/06.features/14.device-status/assets/shared-spaces.png b/content/arduino-cloud/06.features/14.device-status/assets/shared-spaces.png
index b3f9ea9529..8f074d0fdb 100644
Binary files a/content/arduino-cloud/06.features/14.device-status/assets/shared-spaces.png and b/content/arduino-cloud/06.features/14.device-status/assets/shared-spaces.png differ
diff --git a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/api-keys.png b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/api-keys.png
index f7496e9385..b9842c79a8 100644
Binary files a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/api-keys.png and b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/api-keys.png differ
diff --git a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/auth-complete.png b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/auth-complete.png
index f474e66ba0..2d0a23eb77 100644
Binary files a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/auth-complete.png and b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/auth-complete.png differ
diff --git a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/get-request.png b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/get-request.png
index aa932456e2..d1383a0f40 100644
Binary files a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/get-request.png and b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/get-request.png differ
diff --git a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-1.png b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-1.png
index 12963da880..c83a273740 100644
Binary files a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-1.png and b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-1.png differ
diff --git a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-2.png b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-2.png
index b9ed4d700f..fa1d138fff 100644
Binary files a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-2.png and b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-2.png differ
diff --git a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-3.png b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-3.png
index 762442cb22..545ef64dca 100644
Binary files a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-3.png and b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/postman-3.png differ
diff --git a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/thing-id.png b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/thing-id.png
index a0897a9c98..1549e33eb6 100644
Binary files a/content/arduino-cloud/07.api/02.arduino-iot-api/assets/thing-id.png and b/content/arduino-cloud/07.api/02.arduino-iot-api/assets/thing-id.png differ
diff --git a/content/arduino-cloud/07.api/02.arduino-iot-api/hero-banner.png b/content/arduino-cloud/07.api/02.arduino-iot-api/hero-banner.png
index 7e83ca2184..69d1240194 100644
Binary files a/content/arduino-cloud/07.api/02.arduino-iot-api/hero-banner.png and b/content/arduino-cloud/07.api/02.arduino-iot-api/hero-banner.png differ
diff --git a/content/arduino-cloud/07.api/04.python/assets/variable-sync.png b/content/arduino-cloud/07.api/04.python/assets/variable-sync.png
index 14a921098f..a01299a288 100644
Binary files a/content/arduino-cloud/07.api/04.python/assets/variable-sync.png and b/content/arduino-cloud/07.api/04.python/assets/variable-sync.png differ
diff --git a/content/arduino-cloud/08.arduino-cloud-cli/07.getting-started/assets/export-ide.png b/content/arduino-cloud/08.arduino-cloud-cli/07.getting-started/assets/export-ide.png
index f25be1a668..38072d6770 100644
Binary files a/content/arduino-cloud/08.arduino-cloud-cli/07.getting-started/assets/export-ide.png and b/content/arduino-cloud/08.arduino-cloud-cli/07.getting-started/assets/export-ide.png differ
diff --git a/content/arduino-cloud/08.arduino-cloud-cli/07.getting-started/assets/mass-upload.png b/content/arduino-cloud/08.arduino-cloud-cli/07.getting-started/assets/mass-upload.png
index 7b233eb5ec..3c8fba25eb 100644
Binary files a/content/arduino-cloud/08.arduino-cloud-cli/07.getting-started/assets/mass-upload.png and b/content/arduino-cloud/08.arduino-cloud-cli/07.getting-started/assets/mass-upload.png differ
diff --git a/content/arduino-cloud/09.business/00.security-considerations/assets/device-phases.png b/content/arduino-cloud/09.business/00.security-considerations/assets/device-phases.png
index 1c8cadad7d..40830648f2 100644
Binary files a/content/arduino-cloud/09.business/00.security-considerations/assets/device-phases.png and b/content/arduino-cloud/09.business/00.security-considerations/assets/device-phases.png differ
diff --git a/content/arduino-cloud/09.business/01.iso27001/assets/infosec.png b/content/arduino-cloud/09.business/01.iso27001/assets/infosec.png
index 64b5621612..93d958a0c7 100644
Binary files a/content/arduino-cloud/09.business/01.iso27001/assets/infosec.png and b/content/arduino-cloud/09.business/01.iso27001/assets/infosec.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/arduino_cloud_thing_metadata.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/arduino_cloud_thing_metadata.png
index baa0288ca3..eeb87e193b 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/arduino_cloud_thing_metadata.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/arduino_cloud_thing_metadata.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_1.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_1.png
index a88fbff39c..47fd7e8140 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_1.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_1.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_2.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_2.png
index 0a7fff43e7..726ae4af92 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_2.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_2.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_3.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_3.png
index 977b1bc1e4..622eea67e3 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_3.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_3.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_4.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_4.png
index 28c310edac..dfb3bc15b2 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_4.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_4.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_5.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_5.png
index b07064ca01..90ef0353b7 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_5.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_5.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_6.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_6.png
index 8274c0b6d9..beb007f17f 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_6.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_6.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_7.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_7.png
index 38fbf70f91..0bf30bd020 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_7.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_create_7.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_creation_1.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_creation_1.png
index 7fa455c249..5f6efac9a4 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_creation_1.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_creation_1.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_creation_2.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_creation_2.png
index 27abac69e2..0c54db2c49 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_creation_2.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_creation_2.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_info.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_info.png
index cad7b6a14a..ca1fd55253 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_info.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_stack_info.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_tag_1.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_tag_1.png
index 96fb52d6c7..9d2b76801d 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_tag_1.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_tag_1.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_tag_2.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_tag_2.png
index a095cc5d3a..e63950dc35 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_tag_2.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloud_tag_2.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloudformation_stack_creation.gif b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloudformation_stack_creation.gif
index 97ad70a403..27415c969e 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloudformation_stack_creation.gif and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloudformation_stack_creation.gif differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloudformation_stack_step4.gif b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloudformation_stack_step4.gif
index e40777f0c9..c11b46e2c3 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloudformation_stack_step4.gif and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/cloudformation_stack_step4.gif differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/eventbridge_rule_details.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/eventbridge_rule_details.png
index 7047fbef7d..2a3ccc461c 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/eventbridge_rule_details.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/eventbridge_rule_details.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/eventbridge_rules.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/eventbridge_rules.png
index 2faa1a1ada..292e284fb1 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/eventbridge_rules.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/eventbridge_rules.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function.png
index 8c337283a0..683aa845d4 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_log_detail.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_log_detail.png
index 0eb1777cc3..852db09b3d 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_log_detail.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_log_detail.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_logs.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_logs.png
index 87583b8433..56b2934f20 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_logs.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_logs.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_metrics.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_metrics.png
index 935819adfb..95745e87e5 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_metrics.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_cloudwatch_metrics.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_eventbridge_trigger.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_eventbridge_trigger.png
index 3f5937132f..3b9af580a4 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_eventbridge_trigger.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_eventbridge_trigger.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_overview.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_overview.png
index bc055f230e..20271575cb 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_overview.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/lambda_function_overview.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_complete.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_complete.png
index 719f39f8d5..0650eae433 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_complete.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_complete.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_create_1.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_create_1.png
index 1978108e50..764f78ba03 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_create_1.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_create_1.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_create_2.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_create_2.png
index 52978e6da6..8c46781917 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_create_2.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_create_2.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_1.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_1.png
index 8016533f00..3cd382f753 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_1.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_1.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_2.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_2.png
index bef16177eb..3e33070a62 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_2.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_2.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_3.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_3.png
index 386e244268..8e3a20109b 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_3.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_3.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_4.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_4.png
index 3b094ee2ff..03804cb999 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_4.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_csvdests3int_4.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin.png
index c5b053d82c..49396b49b4 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_1.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_1.png
index d46e7baaed..11868e1c03 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_1.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_1.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_2.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_2.png
index 2ee65759a0..365baae040 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_2.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_2.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_3.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_3.png
index 66c424534f..14f340933c 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_3.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_3.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_4.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_4.png
index 377ab20182..4f90900690 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_4.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_bucket_lambdas3bin_setup_4.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_bucket_directory.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_bucket_directory.png
index b560d023c4..916efa1f4c 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_bucket_directory.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_bucket_directory.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_bucket_files.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_bucket_files.png
index c4276e601d..b70f33c16f 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_bucket_files.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_bucket_files.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_file_details.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_file_details.png
index 6c466b7054..c3eb9cb1a7 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_file_details.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/s3_csv_file_details.png differ
diff --git a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/tag-filter.png b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/tag-filter.png
index 21496a451e..c3d938021f 100644
Binary files a/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/tag-filter.png and b/content/arduino-cloud/09.business/02.aws-s3-exporter/assets/tag-filter.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/add-on-selection.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/add-on-selection.png
index c6a831eb81..de6169a786 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/add-on-selection.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/add-on-selection.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/add-tag.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/add-tag.png
index 8b1bd9677c..d3762a23f1 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/add-tag.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/add-tag.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/arduino-account-login.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/arduino-account-login.png
index ce0ef7743e..dddb293cfe 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/arduino-account-login.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/arduino-account-login.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/cloud-add-on.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/cloud-add-on.png
index 6530ff251d..c236f38813 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/cloud-add-on.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/cloud-add-on.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/collab-code-demo.gif b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/collab-code-demo.gif
index e476fa9ef0..8765b5efa2 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/collab-code-demo.gif and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/collab-code-demo.gif differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/collab-code-orange-frame.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/collab-code-orange-frame.png
index b63e2d3bec..83981bb5b9 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/collab-code-orange-frame.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/collab-code-orange-frame.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/create-new-space.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/create-new-space.png
index e75588ebaf..074d9d4d97 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/create-new-space.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/create-new-space.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/create-thing.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/create-thing.png
index 91350b6eee..f2d67469ec 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/create-thing.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/create-thing.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-1.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-1.png
index a176202363..b39cdc4d3d 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-1.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-1.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2-1.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2-1.png
index 7eea0eee5f..7e81d031fc 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2-1.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2-1.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2-2.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2-2.png
index 01c85723af..eed20e9481 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2-2.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2-2.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2.png
index c97ffc31dc..63cc38d9bc 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-2.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-1.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-1.png
index 66a2c22e2c..a159db4fd4 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-1.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-1.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-2.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-2.png
index 36739b0ae8..b3f97478bf 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-2.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-2.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-4.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-4.png
index 9803c1d92c..180c189fa8 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-4.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3-4.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3.png
index 7e130f121f..f040721310 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/custom-branding-3.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/dashboard-example.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/dashboard-example.png
index 00536e9348..a883b724fd 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/dashboard-example.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/dashboard-example.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/dashboard-sharing.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/dashboard-sharing.png
index f49508dcfe..ea6447ba9d 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/dashboard-sharing.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/dashboard-sharing.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-detail-information.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-detail-information.png
index e766755887..dcacb484a3 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-detail-information.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-detail-information.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-name-configuration.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-name-configuration.png
index 1068d23498..b7420bc899 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-name-configuration.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-name-configuration.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-onboarding.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-onboarding.png
index b96fcfc335..c51f4e2348 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-onboarding.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/device-onboarding.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/devices-list-page.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/devices-list-page.png
index 9722bf9e08..a2ab5fca45 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/devices-list-page.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/devices-list-page.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/devices-list.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/devices-list.png
index 2597b99b4d..074e65ed27 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/devices-list.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/devices-list.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/download-button.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/download-button.png
index df58da6ff5..c05defda3e 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/download-button.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/download-button.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/download-data.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/download-data.png
index 2427b63b6d..292f51319a 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/download-data.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/download-data.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/email-data.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/email-data.png
index aee437ca3f..be219d327f 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/email-data.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/email-data.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/get-data.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/get-data.png
index 881b42e96e..2ab14a5298 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/get-data.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/get-data.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/iot-cloud-button.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/iot-cloud-button.png
index f18f6633c8..85b9eb2bf2 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/iot-cloud-button.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/iot-cloud-button.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/members-home.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/members-home.png
index 547a2bc5f1..adc8245eb4 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/members-home.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/members-home.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/new-member-invitation.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/new-member-invitation.png
index e6c03f422c..1016927ded 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/new-member-invitation.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/new-member-invitation.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/new-tag-filtering.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/new-tag-filtering.png
index 9aff28c5c6..9003252c63 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/new-tag-filtering.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/new-tag-filtering.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/plan-customization.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/plan-customization.png
index 0ef07cf9b8..d037eb08bd 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/plan-customization.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/plan-customization.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/portenta-found.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/portenta-found.png
index 3476dd8b03..b26237f1e9 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/portenta-found.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/portenta-found.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/provisioning-success.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/provisioning-success.png
index c60dc76791..a1e45cd6b5 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/provisioning-success.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/provisioning-success.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/search-things.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/search-things.png
index ad26ae0c11..31e83f77d7 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/search-things.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/search-things.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/shared-space-settings.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/shared-space-settings.png
index 2076fb087d..f3b05cb5bc 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/shared-space-settings.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/shared-space-settings.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/shared-space-type-selection.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/shared-space-type-selection.png
index 80b8f88c6b..024b63e486 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/shared-space-type-selection.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/shared-space-type-selection.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/sketch-full-editor.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/sketch-full-editor.png
index 5efd6da3bc..07da5764be 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/sketch-full-editor.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/sketch-full-editor.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces-multiple-option.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces-multiple-option.png
index 7d8257ab76..01d603ec50 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces-multiple-option.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces-multiple-option.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces-multiple.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces-multiple.png
index e7a60bc3fa..3c743679de 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces-multiple.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces-multiple.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces.png
index 9eb9c405d6..87af7f26cd 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/switch-spaces.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/thing-metadata.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/thing-metadata.png
index 2411ddb8ac..fb2601d385 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/thing-metadata.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/thing-metadata.png differ
diff --git a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/web-editor-button.png b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/web-editor-button.png
index 56f6484061..6ac3d0c16a 100644
Binary files a/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/web-editor-button.png and b/content/arduino-cloud/09.business/09.arduino-cloud-for-business/assets/web-editor-button.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/cloud-editor.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/cloud-editor.png
index 6af5e48ee9..f8780c9e30 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/cloud-editor.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/cloud-editor.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/cloud-home-u.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/cloud-home-u.png
index da7b766411..ade378dffe 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/cloud-home-u.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/cloud-home-u.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/collab-code-demo.gif b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/collab-code-demo.gif
index e476fa9ef0..8765b5efa2 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/collab-code-demo.gif and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/collab-code-demo.gif differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/collab-code-orange-frame.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/collab-code-orange-frame.png
index b63e2d3bec..83981bb5b9 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/collab-code-orange-frame.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/collab-code-orange-frame.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/configure-your-plan.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/configure-your-plan.png
index f9127a5761..f21eec46b4 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/configure-your-plan.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/configure-your-plan.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/content-courses.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/content-courses.png
index b054fad05e..f0237e6016 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/content-courses.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/content-courses.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/copy-code-join.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/copy-code-join.png
index 04f604ddff..f7bcef41af 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/copy-code-join.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/copy-code-join.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/create-thing.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/create-thing.png
index 3e2c0482f7..fd830c32c5 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/create-thing.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/create-thing.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/device-details.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/device-details.png
index a1985fa554..831e477d8f 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/device-details.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/device-details.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/device-list.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/device-list.png
index 62beac3637..ca57e09960 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/device-list.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/device-list.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/download-sketch.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/download-sketch.png
index 3c42856fb3..aa496bdab5 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/download-sketch.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/download-sketch.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/google-classroom-content-share.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/google-classroom-content-share.png
index f041dcc539..7d1c06197f 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/google-classroom-content-share.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/google-classroom-content-share.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/google-integration-arduino-cloud02.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/google-integration-arduino-cloud02.png
index abbeb389d2..864cb84fd7 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/google-integration-arduino-cloud02.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/google-integration-arduino-cloud02.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/homepage-greenhouse.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/homepage-greenhouse.png
index efc086d8dd..f997438b76 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/homepage-greenhouse.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/homepage-greenhouse.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/invite-members.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/invite-members.png
index 891b8cb28e..3bf69fe304 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/invite-members.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/invite-members.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/iot-projects-setup.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/iot-projects-setup.png
index f114543511..52317700f5 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/iot-projects-setup.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/iot-projects-setup.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/lesson.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/lesson.png
index c729b58e59..23a2e816d7 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/lesson.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/lesson.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/new-tag-filtering.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/new-tag-filtering.png
index 5dda3896d3..67d94915f7 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/new-tag-filtering.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/new-tag-filtering.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/side-bar.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/side-bar.png
index 6ec6833937..317feab5a8 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/side-bar.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/side-bar.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/sketches-list.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/sketches-list.png
index 7bb429916a..79432e7ec6 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/sketches-list.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/sketches-list.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/space-setting-side-bar.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/space-setting-side-bar.png
index a940242ca1..45be407089 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/space-setting-side-bar.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/space-setting-side-bar.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/space-setting.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/space-setting.png
index 9742a22ced..42b38e2b70 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/space-setting.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/space-setting.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/thing-interface.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/thing-interface.png
index 15a6c5eb36..c6ece7d02b 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/thing-interface.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/thing-interface.png differ
diff --git a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/three-courses.png b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/three-courses.png
index 607e854732..7225297299 100644
Binary files a/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/three-courses.png and b/content/arduino-cloud/10.education/00.arduino-cloud-for-education/assets/three-courses.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/add-member-1.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/add-member-1.png
index 5d4fc4ce96..96c7475cc6 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/add-member-1.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/add-member-1.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/button-share-dashboard.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/button-share-dashboard.png
index c61c741329..ba535bf251 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/button-share-dashboard.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/button-share-dashboard.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/change-role.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/change-role.png
index 728657dc14..f565c9fab1 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/change-role.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/change-role.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/choose-role.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/choose-role.png
index 204d789927..3978bc3a3b 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/choose-role.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/choose-role.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/cloud-home-u.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/cloud-home-u.png
index da7b766411..ade378dffe 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/cloud-home-u.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/cloud-home-u.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/cloud-shared-spaces.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/cloud-shared-spaces.png
index 0619c82662..b9c62bdbed 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/cloud-shared-spaces.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/cloud-shared-spaces.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/content-courses.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/content-courses.png
index b054fad05e..f0237e6016 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/content-courses.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/content-courses.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/copy-code-join.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/copy-code-join.png
index 04f604ddff..f7bcef41af 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/copy-code-join.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/copy-code-join.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/copyurl-minor.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/copyurl-minor.png
index 0b0f5b35cb..6b8cf49e70 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/copyurl-minor.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/copyurl-minor.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/delete-member.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/delete-member.png
index 606b1b5899..7c57612711 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/delete-member.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/delete-member.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/email-conf.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/email-conf.png
index f21f08bd45..cc92059787 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/email-conf.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/email-conf.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/features-usage.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/features-usage.png
index 936d75b2a6..aa8429da11 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/features-usage.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/features-usage.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/fillschoolinfo.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/fillschoolinfo.png
index 89c764bc47..83d4915412 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/fillschoolinfo.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/fillschoolinfo.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-button.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-button.png
index 484a017a29..eff6a85005 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-button.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-button.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-email.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-email.png
index 329d9230a0..29e135d99a 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-email.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-email.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-members.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-members.png
index 891b8cb28e..3bf69fe304 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-members.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-members.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-with-link.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-with-link.png
index b4cfef1d97..1811fcbaa7 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-with-link.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/invite-with-link.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/inviteurl.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/inviteurl.png
index d285286e85..d0f951e3f7 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/inviteurl.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/inviteurl.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/mote-than-3.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/mote-than-3.png
index 0dcd398411..fda485a083 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/mote-than-3.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/mote-than-3.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/my-cloud-space.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/my-cloud-space.png
index a348f84543..684aaa4932 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/my-cloud-space.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/my-cloud-space.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/private-space-details.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/private-space-details.png
index 28c3594cfa..b11b070b7b 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/private-space-details.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/private-space-details.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/recent-sketches.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/recent-sketches.png
index 6e2b4253c6..932e69c3eb 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/recent-sketches.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/recent-sketches.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/shared-space-type-selection.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/shared-space-type-selection.png
index 80b8f88c6b..024b63e486 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/shared-space-type-selection.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/shared-space-type-selection.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/space-setting-side-bar.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/space-setting-side-bar.png
index a940242ca1..45be407089 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/space-setting-side-bar.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/space-setting-side-bar.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/space-setting.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/space-setting.png
index 9742a22ced..42b38e2b70 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/space-setting.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/space-setting.png differ
diff --git a/content/arduino-cloud/10.education/01.shared-spaces/assets/switch-space.png b/content/arduino-cloud/10.education/01.shared-spaces/assets/switch-space.png
index 1d38060e6d..a1a75bf2a7 100644
Binary files a/content/arduino-cloud/10.education/01.shared-spaces/assets/switch-space.png and b/content/arduino-cloud/10.education/01.shared-spaces/assets/switch-space.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/dashboard-add.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/dashboard-add.png
index 2ecae0fd38..40d4a109be 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/dashboard-add.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/dashboard-add.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/dashboard.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/dashboard.png
index 80a60d1cba..60f187444c 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/dashboard.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/dashboard.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/envShield.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/envShield.png
index 2bec469855..8afd281c64 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/envShield.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/envShield.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_dashboard.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_dashboard.png
index 3ff428b247..444ffc98e3 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_dashboard.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_dashboard.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_device.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_device.png
index 96e6c0fb3a..c27c81c92f 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_device.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_device.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_thing.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_thing.png
index dde2c600df..9d181e9c23 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_thing.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/new_thing.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/serial.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/serial.png
index 240a0e48da..97b4390dd0 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/serial.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/serial.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/sketch.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/sketch.png
index 3f2f36d813..8c30669964 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/sketch.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/sketch.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/thing.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/thing.png
index 207439da26..96d35dfc2b 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/thing.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/thing.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/thing_overview.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/thing_overview.png
index 8bc9701882..f651b370f6 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/thing_overview.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/thing_overview.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/widgets.png b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/widgets.png
index 229674f18d..c3ce61239e 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/widgets.png and b/content/arduino-cloud/11.application-notes/cloud-environmental-data/assets/widgets.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/MKRRELAY_T1_IMG06.png b/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/MKRRELAY_T1_IMG06.png
index 2f8c009acf..35cc6d6907 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/MKRRELAY_T1_IMG06.png and b/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/MKRRELAY_T1_IMG06.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/cloud-relay-control-img11.png b/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/cloud-relay-control-img11.png
index c3bcca1a8c..c70de1620c 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/cloud-relay-control-img11.png and b/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/cloud-relay-control-img11.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/dashboard.png b/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/dashboard.png
index cfff8643f1..464f58d134 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/dashboard.png and b/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/dashboard.png differ
diff --git a/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/thing.png b/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/thing.png
index 7e57b10597..29167dfa2a 100644
Binary files a/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/thing.png and b/content/arduino-cloud/11.application-notes/cloud-relay-control/assets/thing.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/configureThing.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/configureThing.png
index 396ad08f29..08951d9025 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/configureThing.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/configureThing.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/dashboardWidgets.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/dashboardWidgets.png
index d568ed3eef..213827fa03 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/dashboardWidgets.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/dashboardWidgets.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img01.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img01.png
index 3307b564d4..267b6c5e02 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img01.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img01.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img02.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img02.png
index 4db745a95a..5afafd086c 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img02.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img02.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img03.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img03.png
index bfe3456c8f..36f3217096 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img03.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img03.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img04.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img04.png
index f946f138c8..c532c01528 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img04.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img04.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img05.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img05.png
index b82e0840a1..cd97b2a33c 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img05.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img05.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img06.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img06.png
index 56a9010241..2be2215213 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img06.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img06.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img07.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img07.png
index 13c84bd188..e1b5185f45 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img07.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img07.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img08.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img08.png
index b905f46674..e61dff63e2 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img08.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img08.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img09.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img09.png
index fc7fb4e3bf..25fdb06d66 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img09.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img09.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img10.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img10.png
index 5d29330991..6415f22dda 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img10.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img10.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img11.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img11.png
index 8fd912457f..ef998ce5e2 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img11.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img11.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img12.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img12.png
index 988d6e98eb..1dc24ef5c2 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img12.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img12.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img13.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img13.png
index 1c1bd5d5df..f6bffdcc41 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img13.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img13.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img14.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img14.png
index 779a9fe0f4..708922c23e 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img14.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img14.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img15.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img15.png
index 99d0ed53d2..9bae5e8986 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img15.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img15.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img16.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img16.png
index 41f609f764..fc966f78c7 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img16.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img16.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img17.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img17.png
index 80212cdf28..268ab87404 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img17.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img17.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img18.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img18.png
index 8d0e79cabe..a9e4a92bab 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img18.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img18.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img19.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img19.png
index 13a55123a7..40aab07d2b 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img19.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img19.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img20.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img20.png
index 3964c8e2ef..435786512d 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img20.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img20.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img21.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img21.png
index 179949ef45..1999b28b09 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img21.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img21.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img22.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img22.png
index e130b94c04..2e17aebb24 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img22.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img22.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img23.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img23.png
index b5ea042a60..b75a39561f 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img23.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img23.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img24.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img24.png
index 0639411a01..4c44ec8c42 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img24.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/modbus-energy-meter_img24.png differ
diff --git a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/openSketch.png b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/openSketch.png
index 907b74b8da..de327fab63 100644
Binary files a/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/openSketch.png and b/content/arduino-cloud/11.application-notes/modbus-energy-meter/assets/openSketch.png differ
diff --git a/content/arduino-cloud/software-icon.png b/content/arduino-cloud/software-icon.png
index e38ffb77c1..7a98ff3b93 100644
Binary files a/content/arduino-cloud/software-icon.png and b/content/arduino-cloud/software-icon.png differ
diff --git a/content/arduino-cloud/software.png b/content/arduino-cloud/software.png
index 48e1a9ffc8..2c82f15213 100644
Binary files a/content/arduino-cloud/software.png and b/content/arduino-cloud/software.png differ
diff --git a/content/built-in-examples/01.basics/BareMinimum/assets/circuit.png b/content/built-in-examples/01.basics/BareMinimum/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/01.basics/BareMinimum/assets/circuit.png and b/content/built-in-examples/01.basics/BareMinimum/assets/circuit.png differ
diff --git a/content/built-in-examples/01.basics/Blink/assets/circuit.png b/content/built-in-examples/01.basics/Blink/assets/circuit.png
index fd324c9c85..66b14fdf0a 100644
Binary files a/content/built-in-examples/01.basics/Blink/assets/circuit.png and b/content/built-in-examples/01.basics/Blink/assets/circuit.png differ
diff --git a/content/built-in-examples/01.basics/Blink/assets/schematic.png b/content/built-in-examples/01.basics/Blink/assets/schematic.png
index c8b7315457..81579686f3 100644
Binary files a/content/built-in-examples/01.basics/Blink/assets/schematic.png and b/content/built-in-examples/01.basics/Blink/assets/schematic.png differ
diff --git a/content/built-in-examples/01.basics/DigitalReadSerial/assets/circuit.png b/content/built-in-examples/01.basics/DigitalReadSerial/assets/circuit.png
index e6b35a68f5..4eb738f4fd 100644
Binary files a/content/built-in-examples/01.basics/DigitalReadSerial/assets/circuit.png and b/content/built-in-examples/01.basics/DigitalReadSerial/assets/circuit.png differ
diff --git a/content/built-in-examples/01.basics/DigitalReadSerial/assets/schematic.png b/content/built-in-examples/01.basics/DigitalReadSerial/assets/schematic.png
index 8480eb62d4..022bd8f171 100644
Binary files a/content/built-in-examples/01.basics/DigitalReadSerial/assets/schematic.png and b/content/built-in-examples/01.basics/DigitalReadSerial/assets/schematic.png differ
diff --git a/content/built-in-examples/01.basics/Fade/assets/simplefade_bb.png b/content/built-in-examples/01.basics/Fade/assets/simplefade_bb.png
index 9d57a1e853..f920caecaa 100644
Binary files a/content/built-in-examples/01.basics/Fade/assets/simplefade_bb.png and b/content/built-in-examples/01.basics/Fade/assets/simplefade_bb.png differ
diff --git a/content/built-in-examples/01.basics/Fade/assets/simplefade_pin9_schem.png b/content/built-in-examples/01.basics/Fade/assets/simplefade_pin9_schem.png
index 98d7cace21..1553c374c2 100644
Binary files a/content/built-in-examples/01.basics/Fade/assets/simplefade_pin9_schem.png and b/content/built-in-examples/01.basics/Fade/assets/simplefade_pin9_schem.png differ
diff --git a/content/built-in-examples/01.basics/ReadAnalogVoltage/assets/circuit.png b/content/built-in-examples/01.basics/ReadAnalogVoltage/assets/circuit.png
index 2924fce26a..89021ceacc 100644
Binary files a/content/built-in-examples/01.basics/ReadAnalogVoltage/assets/circuit.png and b/content/built-in-examples/01.basics/ReadAnalogVoltage/assets/circuit.png differ
diff --git a/content/built-in-examples/01.basics/ReadAnalogVoltage/assets/schematic.png b/content/built-in-examples/01.basics/ReadAnalogVoltage/assets/schematic.png
index d2307f002d..200c879eb1 100644
Binary files a/content/built-in-examples/01.basics/ReadAnalogVoltage/assets/schematic.png and b/content/built-in-examples/01.basics/ReadAnalogVoltage/assets/schematic.png differ
diff --git a/content/built-in-examples/02.digital/BlinkWithoutDelay/assets/circuit.png b/content/built-in-examples/02.digital/BlinkWithoutDelay/assets/circuit.png
index b73c42a596..aeeaece92f 100644
Binary files a/content/built-in-examples/02.digital/BlinkWithoutDelay/assets/circuit.png and b/content/built-in-examples/02.digital/BlinkWithoutDelay/assets/circuit.png differ
diff --git a/content/built-in-examples/02.digital/BlinkWithoutDelay/assets/schematic.png b/content/built-in-examples/02.digital/BlinkWithoutDelay/assets/schematic.png
index c8b7315457..81579686f3 100644
Binary files a/content/built-in-examples/02.digital/BlinkWithoutDelay/assets/schematic.png and b/content/built-in-examples/02.digital/BlinkWithoutDelay/assets/schematic.png differ
diff --git a/content/built-in-examples/02.digital/Button/assets/circuit.png b/content/built-in-examples/02.digital/Button/assets/circuit.png
index e6b35a68f5..4eb738f4fd 100644
Binary files a/content/built-in-examples/02.digital/Button/assets/circuit.png and b/content/built-in-examples/02.digital/Button/assets/circuit.png differ
diff --git a/content/built-in-examples/02.digital/Button/assets/schematic.png b/content/built-in-examples/02.digital/Button/assets/schematic.png
index 6320786436..737038eb31 100644
Binary files a/content/built-in-examples/02.digital/Button/assets/schematic.png and b/content/built-in-examples/02.digital/Button/assets/schematic.png differ
diff --git a/content/built-in-examples/02.digital/Debounce/assets/circuit.png b/content/built-in-examples/02.digital/Debounce/assets/circuit.png
index e6b35a68f5..4eb738f4fd 100644
Binary files a/content/built-in-examples/02.digital/Debounce/assets/circuit.png and b/content/built-in-examples/02.digital/Debounce/assets/circuit.png differ
diff --git a/content/built-in-examples/02.digital/Debounce/assets/schematic.png b/content/built-in-examples/02.digital/Debounce/assets/schematic.png
index 3475134661..bc06f312aa 100644
Binary files a/content/built-in-examples/02.digital/Debounce/assets/schematic.png and b/content/built-in-examples/02.digital/Debounce/assets/schematic.png differ
diff --git a/content/built-in-examples/02.digital/InputPullupSerial/assets/circuit.png b/content/built-in-examples/02.digital/InputPullupSerial/assets/circuit.png
index b5456fccb6..8f241b8ff9 100644
Binary files a/content/built-in-examples/02.digital/InputPullupSerial/assets/circuit.png and b/content/built-in-examples/02.digital/InputPullupSerial/assets/circuit.png differ
diff --git a/content/built-in-examples/02.digital/InputPullupSerial/assets/schematic.png b/content/built-in-examples/02.digital/InputPullupSerial/assets/schematic.png
index 83a35fff45..404f5f3154 100644
Binary files a/content/built-in-examples/02.digital/InputPullupSerial/assets/schematic.png and b/content/built-in-examples/02.digital/InputPullupSerial/assets/schematic.png differ
diff --git a/content/built-in-examples/02.digital/StateChangeDetection/assets/circuit.png b/content/built-in-examples/02.digital/StateChangeDetection/assets/circuit.png
index e6b35a68f5..4eb738f4fd 100644
Binary files a/content/built-in-examples/02.digital/StateChangeDetection/assets/circuit.png and b/content/built-in-examples/02.digital/StateChangeDetection/assets/circuit.png differ
diff --git a/content/built-in-examples/02.digital/StateChangeDetection/assets/schematic.png b/content/built-in-examples/02.digital/StateChangeDetection/assets/schematic.png
index f0ee80f598..1d49fe4e55 100644
Binary files a/content/built-in-examples/02.digital/StateChangeDetection/assets/schematic.png and b/content/built-in-examples/02.digital/StateChangeDetection/assets/schematic.png differ
diff --git a/content/built-in-examples/02.digital/toneKeyboard/assets/circuit.png b/content/built-in-examples/02.digital/toneKeyboard/assets/circuit.png
index f9261b58bf..54e4694fd9 100644
Binary files a/content/built-in-examples/02.digital/toneKeyboard/assets/circuit.png and b/content/built-in-examples/02.digital/toneKeyboard/assets/circuit.png differ
diff --git a/content/built-in-examples/02.digital/toneKeyboard/assets/schematic.png b/content/built-in-examples/02.digital/toneKeyboard/assets/schematic.png
index d6947bb457..c153def8fd 100644
Binary files a/content/built-in-examples/02.digital/toneKeyboard/assets/schematic.png and b/content/built-in-examples/02.digital/toneKeyboard/assets/schematic.png differ
diff --git a/content/built-in-examples/02.digital/toneMelody/assets/circuit.png b/content/built-in-examples/02.digital/toneMelody/assets/circuit.png
index 9153f4414d..fe8d288fd6 100644
Binary files a/content/built-in-examples/02.digital/toneMelody/assets/circuit.png and b/content/built-in-examples/02.digital/toneMelody/assets/circuit.png differ
diff --git a/content/built-in-examples/02.digital/toneMelody/assets/schematic.png b/content/built-in-examples/02.digital/toneMelody/assets/schematic.png
index 363230b758..e7002ecb40 100644
Binary files a/content/built-in-examples/02.digital/toneMelody/assets/schematic.png and b/content/built-in-examples/02.digital/toneMelody/assets/schematic.png differ
diff --git a/content/built-in-examples/02.digital/toneMultiple/assets/circuit.png b/content/built-in-examples/02.digital/toneMultiple/assets/circuit.png
index a3ad19a6b9..99fbaf6ffa 100644
Binary files a/content/built-in-examples/02.digital/toneMultiple/assets/circuit.png and b/content/built-in-examples/02.digital/toneMultiple/assets/circuit.png differ
diff --git a/content/built-in-examples/02.digital/toneMultiple/assets/schematic.png b/content/built-in-examples/02.digital/toneMultiple/assets/schematic.png
index 06fdeaa1ae..3ce6310c9d 100644
Binary files a/content/built-in-examples/02.digital/toneMultiple/assets/schematic.png and b/content/built-in-examples/02.digital/toneMultiple/assets/schematic.png differ
diff --git a/content/built-in-examples/02.digital/tonePitchFollower/assets/circuit.png b/content/built-in-examples/02.digital/tonePitchFollower/assets/circuit.png
index 37abc96d16..cb03400986 100644
Binary files a/content/built-in-examples/02.digital/tonePitchFollower/assets/circuit.png and b/content/built-in-examples/02.digital/tonePitchFollower/assets/circuit.png differ
diff --git a/content/built-in-examples/02.digital/tonePitchFollower/assets/schematic.png b/content/built-in-examples/02.digital/tonePitchFollower/assets/schematic.png
index 141f5d6cef..6063591b19 100644
Binary files a/content/built-in-examples/02.digital/tonePitchFollower/assets/schematic.png and b/content/built-in-examples/02.digital/tonePitchFollower/assets/schematic.png differ
diff --git a/content/built-in-examples/03.analog/AnalogInOutSerial/assets/circuit.png b/content/built-in-examples/03.analog/AnalogInOutSerial/assets/circuit.png
index a379782851..3986c67287 100644
Binary files a/content/built-in-examples/03.analog/AnalogInOutSerial/assets/circuit.png and b/content/built-in-examples/03.analog/AnalogInOutSerial/assets/circuit.png differ
diff --git a/content/built-in-examples/03.analog/AnalogInOutSerial/assets/schematic.png b/content/built-in-examples/03.analog/AnalogInOutSerial/assets/schematic.png
index 8ec3959f64..3af24923d5 100644
Binary files a/content/built-in-examples/03.analog/AnalogInOutSerial/assets/schematic.png and b/content/built-in-examples/03.analog/AnalogInOutSerial/assets/schematic.png differ
diff --git a/content/built-in-examples/03.analog/AnalogInput/assets/circuit-pot.png b/content/built-in-examples/03.analog/AnalogInput/assets/circuit-pot.png
index 604206cfab..9227cf17c0 100644
Binary files a/content/built-in-examples/03.analog/AnalogInput/assets/circuit-pot.png and b/content/built-in-examples/03.analog/AnalogInput/assets/circuit-pot.png differ
diff --git a/content/built-in-examples/03.analog/AnalogInput/assets/circuit.png b/content/built-in-examples/03.analog/AnalogInput/assets/circuit.png
index 492a15919f..b338cbf085 100644
Binary files a/content/built-in-examples/03.analog/AnalogInput/assets/circuit.png and b/content/built-in-examples/03.analog/AnalogInput/assets/circuit.png differ
diff --git a/content/built-in-examples/03.analog/AnalogInput/assets/schematic.png b/content/built-in-examples/03.analog/AnalogInput/assets/schematic.png
index 7c76f856f1..e499c611f9 100644
Binary files a/content/built-in-examples/03.analog/AnalogInput/assets/schematic.png and b/content/built-in-examples/03.analog/AnalogInput/assets/schematic.png differ
diff --git a/content/built-in-examples/03.analog/AnalogWriteMega/assets/circuit.png b/content/built-in-examples/03.analog/AnalogWriteMega/assets/circuit.png
index 3776c14ab4..78dbb82e40 100644
Binary files a/content/built-in-examples/03.analog/AnalogWriteMega/assets/circuit.png and b/content/built-in-examples/03.analog/AnalogWriteMega/assets/circuit.png differ
diff --git a/content/built-in-examples/03.analog/AnalogWriteMega/assets/schematic.png b/content/built-in-examples/03.analog/AnalogWriteMega/assets/schematic.png
index 1591ac2b2d..9caf52b3f4 100644
Binary files a/content/built-in-examples/03.analog/AnalogWriteMega/assets/schematic.png and b/content/built-in-examples/03.analog/AnalogWriteMega/assets/schematic.png differ
diff --git a/content/built-in-examples/03.analog/Calibration/assets/circuit.png b/content/built-in-examples/03.analog/Calibration/assets/circuit.png
index 04f80c9570..359f27a549 100644
Binary files a/content/built-in-examples/03.analog/Calibration/assets/circuit.png and b/content/built-in-examples/03.analog/Calibration/assets/circuit.png differ
diff --git a/content/built-in-examples/03.analog/Calibration/assets/schematic.png b/content/built-in-examples/03.analog/Calibration/assets/schematic.png
index a2c7e53c7d..379049828b 100644
Binary files a/content/built-in-examples/03.analog/Calibration/assets/schematic.png and b/content/built-in-examples/03.analog/Calibration/assets/schematic.png differ
diff --git a/content/built-in-examples/03.analog/Fading/assets/circuit.png b/content/built-in-examples/03.analog/Fading/assets/circuit.png
index fa94d89ea1..f640d96dd4 100644
Binary files a/content/built-in-examples/03.analog/Fading/assets/circuit.png and b/content/built-in-examples/03.analog/Fading/assets/circuit.png differ
diff --git a/content/built-in-examples/03.analog/Fading/assets/schematic.png b/content/built-in-examples/03.analog/Fading/assets/schematic.png
index 98d7cace21..1553c374c2 100644
Binary files a/content/built-in-examples/03.analog/Fading/assets/schematic.png and b/content/built-in-examples/03.analog/Fading/assets/schematic.png differ
diff --git a/content/built-in-examples/03.analog/Smoothing/assets/circuit.png b/content/built-in-examples/03.analog/Smoothing/assets/circuit.png
index 2924fce26a..89021ceacc 100644
Binary files a/content/built-in-examples/03.analog/Smoothing/assets/circuit.png and b/content/built-in-examples/03.analog/Smoothing/assets/circuit.png differ
diff --git a/content/built-in-examples/03.analog/Smoothing/assets/schematic.png b/content/built-in-examples/03.analog/Smoothing/assets/schematic.png
index d2307f002d..200c879eb1 100644
Binary files a/content/built-in-examples/03.analog/Smoothing/assets/schematic.png and b/content/built-in-examples/03.analog/Smoothing/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/ASCIITable/assets/circuit.png b/content/built-in-examples/04.communication/ASCIITable/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/04.communication/ASCIITable/assets/circuit.png and b/content/built-in-examples/04.communication/ASCIITable/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/Dimmer/assets/circuit.png b/content/built-in-examples/04.communication/Dimmer/assets/circuit.png
index fa94d89ea1..f640d96dd4 100644
Binary files a/content/built-in-examples/04.communication/Dimmer/assets/circuit.png and b/content/built-in-examples/04.communication/Dimmer/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/Dimmer/assets/maxDimmer.png b/content/built-in-examples/04.communication/Dimmer/assets/maxDimmer.png
index 2ffff72fdc..219c8714a9 100644
Binary files a/content/built-in-examples/04.communication/Dimmer/assets/maxDimmer.png and b/content/built-in-examples/04.communication/Dimmer/assets/maxDimmer.png differ
diff --git a/content/built-in-examples/04.communication/Dimmer/assets/schematic.png b/content/built-in-examples/04.communication/Dimmer/assets/schematic.png
index 98d7cace21..1553c374c2 100644
Binary files a/content/built-in-examples/04.communication/Dimmer/assets/schematic.png and b/content/built-in-examples/04.communication/Dimmer/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/Graph/assets/circuit.png b/content/built-in-examples/04.communication/Graph/assets/circuit.png
index 48ed340447..359e8f6f6f 100644
Binary files a/content/built-in-examples/04.communication/Graph/assets/circuit.png and b/content/built-in-examples/04.communication/Graph/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/Graph/assets/graph-circuit3.png b/content/built-in-examples/04.communication/Graph/assets/graph-circuit3.png
index 8793f568aa..c51f3ca26c 100644
Binary files a/content/built-in-examples/04.communication/Graph/assets/graph-circuit3.png and b/content/built-in-examples/04.communication/Graph/assets/graph-circuit3.png differ
diff --git a/content/built-in-examples/04.communication/Graph/assets/graph-output.png b/content/built-in-examples/04.communication/Graph/assets/graph-output.png
index 91d0990b5a..e1e5b42a43 100644
Binary files a/content/built-in-examples/04.communication/Graph/assets/graph-output.png and b/content/built-in-examples/04.communication/Graph/assets/graph-output.png differ
diff --git a/content/built-in-examples/04.communication/Graph/assets/max-graph.png b/content/built-in-examples/04.communication/Graph/assets/max-graph.png
index 8a594cd660..93f9c3f895 100644
Binary files a/content/built-in-examples/04.communication/Graph/assets/max-graph.png and b/content/built-in-examples/04.communication/Graph/assets/max-graph.png differ
diff --git a/content/built-in-examples/04.communication/Graph/assets/schematic.png b/content/built-in-examples/04.communication/Graph/assets/schematic.png
index d2307f002d..200c879eb1 100644
Binary files a/content/built-in-examples/04.communication/Graph/assets/schematic.png and b/content/built-in-examples/04.communication/Graph/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/Midi/assets/circuit.png b/content/built-in-examples/04.communication/Midi/assets/circuit.png
index c3618f11c1..03513e6b09 100644
Binary files a/content/built-in-examples/04.communication/Midi/assets/circuit.png and b/content/built-in-examples/04.communication/Midi/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/Midi/assets/schematic.png b/content/built-in-examples/04.communication/Midi/assets/schematic.png
index c2d8852992..faf3f638ad 100644
Binary files a/content/built-in-examples/04.communication/Midi/assets/schematic.png and b/content/built-in-examples/04.communication/Midi/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/MultiSerialMega/assets/circuit.png b/content/built-in-examples/04.communication/MultiSerialMega/assets/circuit.png
index 3b4674cdd5..c35cbd1cd1 100644
Binary files a/content/built-in-examples/04.communication/MultiSerialMega/assets/circuit.png and b/content/built-in-examples/04.communication/MultiSerialMega/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/MultiSerialMega/assets/schematic.png b/content/built-in-examples/04.communication/MultiSerialMega/assets/schematic.png
index 9335d7f86a..be5afa28a0 100644
Binary files a/content/built-in-examples/04.communication/MultiSerialMega/assets/schematic.png and b/content/built-in-examples/04.communication/MultiSerialMega/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/PhysicalPixel/assets/circuit.png b/content/built-in-examples/04.communication/PhysicalPixel/assets/circuit.png
index fd324c9c85..89684bf0ac 100644
Binary files a/content/built-in-examples/04.communication/PhysicalPixel/assets/circuit.png and b/content/built-in-examples/04.communication/PhysicalPixel/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/PhysicalPixel/assets/max-physicalPixel.png b/content/built-in-examples/04.communication/PhysicalPixel/assets/max-physicalPixel.png
index a3e29d8caf..20db165be2 100644
Binary files a/content/built-in-examples/04.communication/PhysicalPixel/assets/max-physicalPixel.png and b/content/built-in-examples/04.communication/PhysicalPixel/assets/max-physicalPixel.png differ
diff --git a/content/built-in-examples/04.communication/PhysicalPixel/assets/physicalPixel-output.png b/content/built-in-examples/04.communication/PhysicalPixel/assets/physicalPixel-output.png
index 746bc4a97f..a2d2c0ef89 100644
Binary files a/content/built-in-examples/04.communication/PhysicalPixel/assets/physicalPixel-output.png and b/content/built-in-examples/04.communication/PhysicalPixel/assets/physicalPixel-output.png differ
diff --git a/content/built-in-examples/04.communication/PhysicalPixel/assets/schematic.png b/content/built-in-examples/04.communication/PhysicalPixel/assets/schematic.png
index c8b7315457..81579686f3 100644
Binary files a/content/built-in-examples/04.communication/PhysicalPixel/assets/schematic.png and b/content/built-in-examples/04.communication/PhysicalPixel/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/ReadASCIIString/assets/circuit.png b/content/built-in-examples/04.communication/ReadASCIIString/assets/circuit.png
index 29b851e6cf..08f4193517 100644
Binary files a/content/built-in-examples/04.communication/ReadASCIIString/assets/circuit.png and b/content/built-in-examples/04.communication/ReadASCIIString/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/ReadASCIIString/assets/schematic.png b/content/built-in-examples/04.communication/ReadASCIIString/assets/schematic.png
index 0aae66672f..b87310f889 100644
Binary files a/content/built-in-examples/04.communication/ReadASCIIString/assets/schematic.png and b/content/built-in-examples/04.communication/ReadASCIIString/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/SerialCallResponse/assets/Max5SerialCallResponse.png b/content/built-in-examples/04.communication/SerialCallResponse/assets/Max5SerialCallResponse.png
index 274bf2050d..f81ccc0a4d 100644
Binary files a/content/built-in-examples/04.communication/SerialCallResponse/assets/Max5SerialCallResponse.png and b/content/built-in-examples/04.communication/SerialCallResponse/assets/Max5SerialCallResponse.png differ
diff --git a/content/built-in-examples/04.communication/SerialCallResponse/assets/circuit.png b/content/built-in-examples/04.communication/SerialCallResponse/assets/circuit.png
index 27e4a10352..7a56f89614 100644
Binary files a/content/built-in-examples/04.communication/SerialCallResponse/assets/circuit.png and b/content/built-in-examples/04.communication/SerialCallResponse/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/SerialCallResponse/assets/schematic.png b/content/built-in-examples/04.communication/SerialCallResponse/assets/schematic.png
index 256c61b7ad..72e45bd123 100644
Binary files a/content/built-in-examples/04.communication/SerialCallResponse/assets/schematic.png and b/content/built-in-examples/04.communication/SerialCallResponse/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/Max5SerialCallResponseASCII.png b/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/Max5SerialCallResponseASCII.png
index e0dcabf5d4..520701b07a 100644
Binary files a/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/Max5SerialCallResponseASCII.png and b/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/Max5SerialCallResponseASCII.png differ
diff --git a/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/circuit.png b/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/circuit.png
index 75c80394b3..3522d63b5c 100644
Binary files a/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/circuit.png and b/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/schematic.png b/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/schematic.png
index 256c61b7ad..72e45bd123 100644
Binary files a/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/schematic.png and b/content/built-in-examples/04.communication/SerialCallResponseASCII/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/SerialEvent/assets/circuit.png b/content/built-in-examples/04.communication/SerialEvent/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/04.communication/SerialEvent/assets/circuit.png and b/content/built-in-examples/04.communication/SerialEvent/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/SerialPassthrough/assets/circuit.png b/content/built-in-examples/04.communication/SerialPassthrough/assets/circuit.png
index b8ab0d7927..f3f042603e 100644
Binary files a/content/built-in-examples/04.communication/SerialPassthrough/assets/circuit.png and b/content/built-in-examples/04.communication/SerialPassthrough/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/VirtualColorMixer/assets/circuit.png b/content/built-in-examples/04.communication/VirtualColorMixer/assets/circuit.png
index 6807e87760..d6161439c6 100644
Binary files a/content/built-in-examples/04.communication/VirtualColorMixer/assets/circuit.png and b/content/built-in-examples/04.communication/VirtualColorMixer/assets/circuit.png differ
diff --git a/content/built-in-examples/04.communication/VirtualColorMixer/assets/max-virtualColorMixer.png b/content/built-in-examples/04.communication/VirtualColorMixer/assets/max-virtualColorMixer.png
index 345d8e6c9e..3c34489bec 100644
Binary files a/content/built-in-examples/04.communication/VirtualColorMixer/assets/max-virtualColorMixer.png and b/content/built-in-examples/04.communication/VirtualColorMixer/assets/max-virtualColorMixer.png differ
diff --git a/content/built-in-examples/04.communication/VirtualColorMixer/assets/schematic.png b/content/built-in-examples/04.communication/VirtualColorMixer/assets/schematic.png
index 3575099f01..c96de28ab5 100644
Binary files a/content/built-in-examples/04.communication/VirtualColorMixer/assets/schematic.png and b/content/built-in-examples/04.communication/VirtualColorMixer/assets/schematic.png differ
diff --git a/content/built-in-examples/04.communication/VirtualColorMixer/assets/virtualColorMixer-output.png b/content/built-in-examples/04.communication/VirtualColorMixer/assets/virtualColorMixer-output.png
index 96b4f4399b..a009244d25 100644
Binary files a/content/built-in-examples/04.communication/VirtualColorMixer/assets/virtualColorMixer-output.png and b/content/built-in-examples/04.communication/VirtualColorMixer/assets/virtualColorMixer-output.png differ
diff --git a/content/built-in-examples/05.control-structures/Arrays/assets/circuit.png b/content/built-in-examples/05.control-structures/Arrays/assets/circuit.png
index 9367b8e63e..a7be1ee6ff 100644
Binary files a/content/built-in-examples/05.control-structures/Arrays/assets/circuit.png and b/content/built-in-examples/05.control-structures/Arrays/assets/circuit.png differ
diff --git a/content/built-in-examples/05.control-structures/Arrays/assets/schematic.png b/content/built-in-examples/05.control-structures/Arrays/assets/schematic.png
index 8c6c53f880..22404b75a1 100644
Binary files a/content/built-in-examples/05.control-structures/Arrays/assets/schematic.png and b/content/built-in-examples/05.control-structures/Arrays/assets/schematic.png differ
diff --git a/content/built-in-examples/05.control-structures/ForLoopIteration/assets/circuit.png b/content/built-in-examples/05.control-structures/ForLoopIteration/assets/circuit.png
index 9367b8e63e..a7be1ee6ff 100644
Binary files a/content/built-in-examples/05.control-structures/ForLoopIteration/assets/circuit.png and b/content/built-in-examples/05.control-structures/ForLoopIteration/assets/circuit.png differ
diff --git a/content/built-in-examples/05.control-structures/ForLoopIteration/assets/schematic.png b/content/built-in-examples/05.control-structures/ForLoopIteration/assets/schematic.png
index b3d3fdbf95..16572ec758 100644
Binary files a/content/built-in-examples/05.control-structures/ForLoopIteration/assets/schematic.png and b/content/built-in-examples/05.control-structures/ForLoopIteration/assets/schematic.png differ
diff --git a/content/built-in-examples/05.control-structures/SwitchCase/assets/circuit.png b/content/built-in-examples/05.control-structures/SwitchCase/assets/circuit.png
index 3959d5b77e..d2a64c518a 100644
Binary files a/content/built-in-examples/05.control-structures/SwitchCase/assets/circuit.png and b/content/built-in-examples/05.control-structures/SwitchCase/assets/circuit.png differ
diff --git a/content/built-in-examples/05.control-structures/SwitchCase/assets/schematic.png b/content/built-in-examples/05.control-structures/SwitchCase/assets/schematic.png
index 923d2e117e..92b4575a85 100644
Binary files a/content/built-in-examples/05.control-structures/SwitchCase/assets/schematic.png and b/content/built-in-examples/05.control-structures/SwitchCase/assets/schematic.png differ
diff --git a/content/built-in-examples/05.control-structures/SwitchCase2/assets/circuit.png b/content/built-in-examples/05.control-structures/SwitchCase2/assets/circuit.png
index 93c82f92c0..5f238afee4 100644
Binary files a/content/built-in-examples/05.control-structures/SwitchCase2/assets/circuit.png and b/content/built-in-examples/05.control-structures/SwitchCase2/assets/circuit.png differ
diff --git a/content/built-in-examples/05.control-structures/SwitchCase2/assets/schematic.png b/content/built-in-examples/05.control-structures/SwitchCase2/assets/schematic.png
index f99ec58f6c..8fca957858 100644
Binary files a/content/built-in-examples/05.control-structures/SwitchCase2/assets/schematic.png and b/content/built-in-examples/05.control-structures/SwitchCase2/assets/schematic.png differ
diff --git a/content/built-in-examples/05.control-structures/WhileStatementConditional/assets/circuit.png b/content/built-in-examples/05.control-structures/WhileStatementConditional/assets/circuit.png
index d6548ccbee..6081b778c7 100644
Binary files a/content/built-in-examples/05.control-structures/WhileStatementConditional/assets/circuit.png and b/content/built-in-examples/05.control-structures/WhileStatementConditional/assets/circuit.png differ
diff --git a/content/built-in-examples/05.control-structures/WhileStatementConditional/assets/schematic.png b/content/built-in-examples/05.control-structures/WhileStatementConditional/assets/schematic.png
index 0933345735..2d8eb35b19 100644
Binary files a/content/built-in-examples/05.control-structures/WhileStatementConditional/assets/schematic.png and b/content/built-in-examples/05.control-structures/WhileStatementConditional/assets/schematic.png differ
diff --git a/content/built-in-examples/05.control-structures/ifStatementConditional/assets/circuit.png b/content/built-in-examples/05.control-structures/ifStatementConditional/assets/circuit.png
index 2924fce26a..89021ceacc 100644
Binary files a/content/built-in-examples/05.control-structures/ifStatementConditional/assets/circuit.png and b/content/built-in-examples/05.control-structures/ifStatementConditional/assets/circuit.png differ
diff --git a/content/built-in-examples/05.control-structures/ifStatementConditional/assets/schematic.png b/content/built-in-examples/05.control-structures/ifStatementConditional/assets/schematic.png
index d2307f002d..200c879eb1 100644
Binary files a/content/built-in-examples/05.control-structures/ifStatementConditional/assets/schematic.png and b/content/built-in-examples/05.control-structures/ifStatementConditional/assets/schematic.png differ
diff --git a/content/built-in-examples/06.sensors/ADXL3xx/assets/circuit.png b/content/built-in-examples/06.sensors/ADXL3xx/assets/circuit.png
index 670f059adc..edc92f000d 100644
Binary files a/content/built-in-examples/06.sensors/ADXL3xx/assets/circuit.png and b/content/built-in-examples/06.sensors/ADXL3xx/assets/circuit.png differ
diff --git a/content/built-in-examples/06.sensors/ADXL3xx/assets/schematic.png b/content/built-in-examples/06.sensors/ADXL3xx/assets/schematic.png
index 564eb621cb..7ecc1c6c21 100644
Binary files a/content/built-in-examples/06.sensors/ADXL3xx/assets/schematic.png and b/content/built-in-examples/06.sensors/ADXL3xx/assets/schematic.png differ
diff --git a/content/built-in-examples/06.sensors/Knock/assets/circuit.png b/content/built-in-examples/06.sensors/Knock/assets/circuit.png
index 92b5dbfaee..f6e7a25298 100644
Binary files a/content/built-in-examples/06.sensors/Knock/assets/circuit.png and b/content/built-in-examples/06.sensors/Knock/assets/circuit.png differ
diff --git a/content/built-in-examples/06.sensors/Knock/assets/schematic.png b/content/built-in-examples/06.sensors/Knock/assets/schematic.png
index 3d58b1a8af..25c8cfc02a 100644
Binary files a/content/built-in-examples/06.sensors/Knock/assets/schematic.png and b/content/built-in-examples/06.sensors/Knock/assets/schematic.png differ
diff --git a/content/built-in-examples/06.sensors/Memsic2125/assets/circuit.png b/content/built-in-examples/06.sensors/Memsic2125/assets/circuit.png
index 22b05f6a64..d64cf13015 100644
Binary files a/content/built-in-examples/06.sensors/Memsic2125/assets/circuit.png and b/content/built-in-examples/06.sensors/Memsic2125/assets/circuit.png differ
diff --git a/content/built-in-examples/06.sensors/Memsic2125/assets/schematic.png b/content/built-in-examples/06.sensors/Memsic2125/assets/schematic.png
index ce05c36b65..630fb24f93 100644
Binary files a/content/built-in-examples/06.sensors/Memsic2125/assets/schematic.png and b/content/built-in-examples/06.sensors/Memsic2125/assets/schematic.png differ
diff --git a/content/built-in-examples/06.sensors/Ping/assets/circuit.png b/content/built-in-examples/06.sensors/Ping/assets/circuit.png
index 3a3ba12916..dfd7debbf0 100644
Binary files a/content/built-in-examples/06.sensors/Ping/assets/circuit.png and b/content/built-in-examples/06.sensors/Ping/assets/circuit.png differ
diff --git a/content/built-in-examples/06.sensors/Ping/assets/schematic.png b/content/built-in-examples/06.sensors/Ping/assets/schematic.png
index 33fbad9d6f..444a2d9531 100644
Binary files a/content/built-in-examples/06.sensors/Ping/assets/schematic.png and b/content/built-in-examples/06.sensors/Ping/assets/schematic.png differ
diff --git a/content/built-in-examples/07.display/BarGraph/assets/circuit.png b/content/built-in-examples/07.display/BarGraph/assets/circuit.png
index d7e0dd2c4b..77dccd65a6 100644
Binary files a/content/built-in-examples/07.display/BarGraph/assets/circuit.png and b/content/built-in-examples/07.display/BarGraph/assets/circuit.png differ
diff --git a/content/built-in-examples/07.display/BarGraph/assets/schematic.png b/content/built-in-examples/07.display/BarGraph/assets/schematic.png
index 0d72164c6d..8757328eee 100644
Binary files a/content/built-in-examples/07.display/BarGraph/assets/schematic.png and b/content/built-in-examples/07.display/BarGraph/assets/schematic.png differ
diff --git a/content/built-in-examples/07.display/RowColumnScanning/assets/8x8-LED-Matrix.png b/content/built-in-examples/07.display/RowColumnScanning/assets/8x8-LED-Matrix.png
index 5cf46126d7..b3493211e8 100644
Binary files a/content/built-in-examples/07.display/RowColumnScanning/assets/8x8-LED-Matrix.png and b/content/built-in-examples/07.display/RowColumnScanning/assets/8x8-LED-Matrix.png differ
diff --git a/content/built-in-examples/07.display/RowColumnScanning/assets/circuit.png b/content/built-in-examples/07.display/RowColumnScanning/assets/circuit.png
index 9329fa4336..d90f2d97c8 100644
Binary files a/content/built-in-examples/07.display/RowColumnScanning/assets/circuit.png and b/content/built-in-examples/07.display/RowColumnScanning/assets/circuit.png differ
diff --git a/content/built-in-examples/07.display/RowColumnScanning/assets/schematic.png b/content/built-in-examples/07.display/RowColumnScanning/assets/schematic.png
index aa16e95710..9df148f8c4 100644
Binary files a/content/built-in-examples/07.display/RowColumnScanning/assets/schematic.png and b/content/built-in-examples/07.display/RowColumnScanning/assets/schematic.png differ
diff --git a/content/built-in-examples/08.strings/CharacterAnalysis/assets/circuit.png b/content/built-in-examples/08.strings/CharacterAnalysis/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/CharacterAnalysis/assets/circuit.png and b/content/built-in-examples/08.strings/CharacterAnalysis/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringAdditionOperator/assets/circuit.png b/content/built-in-examples/08.strings/StringAdditionOperator/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringAdditionOperator/assets/circuit.png and b/content/built-in-examples/08.strings/StringAdditionOperator/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringAppendOperator/assets/circuit.png b/content/built-in-examples/08.strings/StringAppendOperator/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringAppendOperator/assets/circuit.png and b/content/built-in-examples/08.strings/StringAppendOperator/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringCaseChanges/assets/circuit.png b/content/built-in-examples/08.strings/StringCaseChanges/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringCaseChanges/assets/circuit.png and b/content/built-in-examples/08.strings/StringCaseChanges/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringCharacters/assets/circuit.png b/content/built-in-examples/08.strings/StringCharacters/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringCharacters/assets/circuit.png and b/content/built-in-examples/08.strings/StringCharacters/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringComparisonOperators/assets/circuit.png b/content/built-in-examples/08.strings/StringComparisonOperators/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringComparisonOperators/assets/circuit.png and b/content/built-in-examples/08.strings/StringComparisonOperators/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringConstructors/assets/circuit.png b/content/built-in-examples/08.strings/StringConstructors/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringConstructors/assets/circuit.png and b/content/built-in-examples/08.strings/StringConstructors/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringIndexOf/assets/circuit.png b/content/built-in-examples/08.strings/StringIndexOf/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringIndexOf/assets/circuit.png and b/content/built-in-examples/08.strings/StringIndexOf/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringLength/assets/circuit.png b/content/built-in-examples/08.strings/StringLength/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringLength/assets/circuit.png and b/content/built-in-examples/08.strings/StringLength/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringLengthTrim/assets/circuit.png b/content/built-in-examples/08.strings/StringLengthTrim/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringLengthTrim/assets/circuit.png and b/content/built-in-examples/08.strings/StringLengthTrim/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringReplace/assets/circuit.png b/content/built-in-examples/08.strings/StringReplace/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringReplace/assets/circuit.png and b/content/built-in-examples/08.strings/StringReplace/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringStartsWithEndsWith/assets/circuit.png b/content/built-in-examples/08.strings/StringStartsWithEndsWith/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringStartsWithEndsWith/assets/circuit.png and b/content/built-in-examples/08.strings/StringStartsWithEndsWith/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringSubstring/assets/circuit.png b/content/built-in-examples/08.strings/StringSubstring/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringSubstring/assets/circuit.png and b/content/built-in-examples/08.strings/StringSubstring/assets/circuit.png differ
diff --git a/content/built-in-examples/08.strings/StringToInt/assets/circuit.png b/content/built-in-examples/08.strings/StringToInt/assets/circuit.png
index e354c36037..2dca4e1326 100644
Binary files a/content/built-in-examples/08.strings/StringToInt/assets/circuit.png and b/content/built-in-examples/08.strings/StringToInt/assets/circuit.png differ
diff --git a/content/built-in-examples/09.usb/ButtonMouseControl/assets/circuit.png b/content/built-in-examples/09.usb/ButtonMouseControl/assets/circuit.png
index b1147c270a..55eef37f77 100644
Binary files a/content/built-in-examples/09.usb/ButtonMouseControl/assets/circuit.png and b/content/built-in-examples/09.usb/ButtonMouseControl/assets/circuit.png differ
diff --git a/content/built-in-examples/09.usb/ButtonMouseControl/assets/schematic.png b/content/built-in-examples/09.usb/ButtonMouseControl/assets/schematic.png
index 865940d303..ec12656cc0 100644
Binary files a/content/built-in-examples/09.usb/ButtonMouseControl/assets/schematic.png and b/content/built-in-examples/09.usb/ButtonMouseControl/assets/schematic.png differ
diff --git a/content/built-in-examples/09.usb/JoystickMouseControl/assets/circuit.png b/content/built-in-examples/09.usb/JoystickMouseControl/assets/circuit.png
index eb38c9f6d6..cf19411365 100644
Binary files a/content/built-in-examples/09.usb/JoystickMouseControl/assets/circuit.png and b/content/built-in-examples/09.usb/JoystickMouseControl/assets/circuit.png differ
diff --git a/content/built-in-examples/09.usb/JoystickMouseControl/assets/schematic.png b/content/built-in-examples/09.usb/JoystickMouseControl/assets/schematic.png
index ffb02bec4b..95a700a6ed 100644
Binary files a/content/built-in-examples/09.usb/JoystickMouseControl/assets/schematic.png and b/content/built-in-examples/09.usb/JoystickMouseControl/assets/schematic.png differ
diff --git a/content/built-in-examples/09.usb/KeyboardAndMouseControl/assets/circuit.png b/content/built-in-examples/09.usb/KeyboardAndMouseControl/assets/circuit.png
index f3dfefc033..787d80405b 100644
Binary files a/content/built-in-examples/09.usb/KeyboardAndMouseControl/assets/circuit.png and b/content/built-in-examples/09.usb/KeyboardAndMouseControl/assets/circuit.png differ
diff --git a/content/built-in-examples/09.usb/KeyboardAndMouseControl/assets/schematic.png b/content/built-in-examples/09.usb/KeyboardAndMouseControl/assets/schematic.png
index 865940d303..ec12656cc0 100644
Binary files a/content/built-in-examples/09.usb/KeyboardAndMouseControl/assets/schematic.png and b/content/built-in-examples/09.usb/KeyboardAndMouseControl/assets/schematic.png differ
diff --git a/content/built-in-examples/09.usb/KeyboardLogout/assets/circuit.png b/content/built-in-examples/09.usb/KeyboardLogout/assets/circuit.png
index 633f0a995e..7fd19aac88 100644
Binary files a/content/built-in-examples/09.usb/KeyboardLogout/assets/circuit.png and b/content/built-in-examples/09.usb/KeyboardLogout/assets/circuit.png differ
diff --git a/content/built-in-examples/09.usb/KeyboardLogout/assets/schematic.png b/content/built-in-examples/09.usb/KeyboardLogout/assets/schematic.png
index 8e918760da..b3dbad08f0 100644
Binary files a/content/built-in-examples/09.usb/KeyboardLogout/assets/schematic.png and b/content/built-in-examples/09.usb/KeyboardLogout/assets/schematic.png differ
diff --git a/content/built-in-examples/09.usb/KeyboardMessage/assets/circuit.png b/content/built-in-examples/09.usb/KeyboardMessage/assets/circuit.png
index fff97427fa..ea2d16200e 100644
Binary files a/content/built-in-examples/09.usb/KeyboardMessage/assets/circuit.png and b/content/built-in-examples/09.usb/KeyboardMessage/assets/circuit.png differ
diff --git a/content/built-in-examples/09.usb/KeyboardMessage/assets/schematic.png b/content/built-in-examples/09.usb/KeyboardMessage/assets/schematic.png
index 054a76e04a..2c97359ce4 100644
Binary files a/content/built-in-examples/09.usb/KeyboardMessage/assets/schematic.png and b/content/built-in-examples/09.usb/KeyboardMessage/assets/schematic.png differ
diff --git a/content/built-in-examples/09.usb/KeyboardReprogram/assets/circuit.png b/content/built-in-examples/09.usb/KeyboardReprogram/assets/circuit.png
index 633f0a995e..7fd19aac88 100644
Binary files a/content/built-in-examples/09.usb/KeyboardReprogram/assets/circuit.png and b/content/built-in-examples/09.usb/KeyboardReprogram/assets/circuit.png differ
diff --git a/content/built-in-examples/09.usb/KeyboardReprogram/assets/schematic.png b/content/built-in-examples/09.usb/KeyboardReprogram/assets/schematic.png
index 8e918760da..b3dbad08f0 100644
Binary files a/content/built-in-examples/09.usb/KeyboardReprogram/assets/schematic.png and b/content/built-in-examples/09.usb/KeyboardReprogram/assets/schematic.png differ
diff --git a/content/built-in-examples/09.usb/KeyboardSerial/assets/circuit.png b/content/built-in-examples/09.usb/KeyboardSerial/assets/circuit.png
index caec08603f..e9de1456d3 100644
Binary files a/content/built-in-examples/09.usb/KeyboardSerial/assets/circuit.png and b/content/built-in-examples/09.usb/KeyboardSerial/assets/circuit.png differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ArduinoUNOtoUNO_ISP2.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ArduinoUNOtoUNO_ISP2.jpg
index 07c1df9de4..5386de5261 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ArduinoUNOtoUNO_ISP2.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ArduinoUNOtoUNO_ISP2.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Arduino_ISP_LEDSOK.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Arduino_ISP_LEDSOK.jpg
index b72fefbc89..74a311f3f6 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Arduino_ISP_LEDSOK.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Arduino_ISP_LEDSOK.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Arduino_ISP_wires.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Arduino_ISP_wires.jpg
index 3df708ce73..ada785a49f 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Arduino_ISP_wires.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Arduino_ISP_wires.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Burn.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Burn.jpg
index 38b574b08f..90f561080c 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Burn.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Burn.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ICSPHeader.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ICSPHeader.jpg
index e2c463ed49..e76a5deb55 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ICSPHeader.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ICSPHeader.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ISP_Programmers.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ISP_Programmers.jpg
index eb13baac7b..b024bb5832 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ISP_Programmers.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/ISP_Programmers.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/LoadSketch.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/LoadSketch.jpg
index 47c17e800a..d959ad77b2 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/LoadSketch.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/LoadSketch.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MKR1000_ISP_UNO_2.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MKR1000_ISP_UNO_2.jpg
index 0ac748111b..51f3930e6c 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MKR1000_ISP_UNO_2.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MKR1000_ISP_UNO_2.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MegaToUNO.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MegaToUNO.jpg
index 5d8bebbee6..0fc89e0446 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MegaToUNO.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MegaToUNO.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MemoryMap.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MemoryMap.jpg
index a61278bc92..c57d983ad3 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MemoryMap.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/MemoryMap.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Uno_Connect.jpg b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Uno_Connect.jpg
index 1dae7754c4..77ccf8d5e8 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Uno_Connect.jpg and b/content/built-in-examples/10.arduino-isp/ArduinoISP/assets/Uno_Connect.jpg differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/ArduinoUSBSerial.png b/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/ArduinoUSBSerial.png
index 897e73e81f..0aaad22bfd 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/ArduinoUSBSerial.png and b/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/ArduinoUSBSerial.png differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/ArduinoUSBSerialSimple.png b/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/ArduinoUSBSerialSimple.png
index 9cc5ba9e32..0bcad7206a 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/ArduinoUSBSerialSimple.png and b/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/ArduinoUSBSerialSimple.png differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/BreadboardAVR.png b/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/BreadboardAVR.png
index 5c63147af5..cf2d6264ea 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/BreadboardAVR.png and b/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/BreadboardAVR.png differ
diff --git a/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/SimpleBreadboardAVR.png b/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/SimpleBreadboardAVR.png
index c21f3c9fb2..8e71b4f3f8 100644
Binary files a/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/SimpleBreadboardAVR.png and b/content/built-in-examples/10.arduino-isp/ArduinoToBreadboard/assets/SimpleBreadboardAVR.png differ
diff --git a/content/built-in-examples/header.png b/content/built-in-examples/header.png
index dac5e9734d..fa3388f0cb 100644
Binary files a/content/built-in-examples/header.png and b/content/built-in-examples/header.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/image.svg b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/image.svg
index a9acef3cf8..c259b081b3 100644
--- a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/image.svg
@@ -1,1368 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/interactive/ABX00004-pinout.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/interactive/ABX00004-pinout.png
index d76748edff..94df207287 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/interactive/ABX00004-pinout.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/interactive/ABX00004-pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/analog-to-midi/assets/ArduinoMKR1000AudioInput_bb.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/analog-to-midi/assets/ArduinoMKR1000AudioInput_bb.png
index 0095a360ad..e80050cefe 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/analog-to-midi/assets/ArduinoMKR1000AudioInput_bb.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/analog-to-midi/assets/ArduinoMKR1000AudioInput_bb.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/analog-to-midi/assets/ArduinoMKR1000AudioInput_schem.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/analog-to-midi/assets/ArduinoMKR1000AudioInput_schem.png
index ebacb1d639..03c21df307 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/analog-to-midi/assets/ArduinoMKR1000AudioInput_schem.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/analog-to-midi/assets/ArduinoMKR1000AudioInput_schem.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/download-and-store-web-data/assets/mkr1000_-_mkr_sd_proto_shield_pWAhuqrpzk.jpg b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/download-and-store-web-data/assets/mkr1000_-_mkr_sd_proto_shield_pWAhuqrpzk.jpg
index 6bd4287cd3..8225bcfd9a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/download-and-store-web-data/assets/mkr1000_-_mkr_sd_proto_shield_pWAhuqrpzk.jpg and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/download-and-store-web-data/assets/mkr1000_-_mkr_sd_proto_shield_pWAhuqrpzk.jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/expose-your-iot-bundle-kit-info-trough-a-wifi-web-server/assets/uploads1.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/expose-your-iot-bundle-kit-info-trough-a-wifi-web-server/assets/uploads1.png
index 3d2aa5bcbb..9fa5dfbbc8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/expose-your-iot-bundle-kit-info-trough-a-wifi-web-server/assets/uploads1.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/expose-your-iot-bundle-kit-info-trough-a-wifi-web-server/assets/uploads1.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/expose-your-iot-bundle-kit-info-trough-a-wifi-web-server/assets/uploads2.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/expose-your-iot-bundle-kit-info-trough-a-wifi-web-server/assets/uploads2.png
index 2f9deca6d0..254f821848 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/expose-your-iot-bundle-kit-info-trough-a-wifi-web-server/assets/uploads2.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/expose-your-iot-bundle-kit-info-trough-a-wifi-web-server/assets/uploads2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/certificates_upload_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/certificates_upload_101.png
index c33e65ec15..254483f153 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/certificates_upload_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/certificates_upload_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/certificates_uploaded_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/certificates_uploaded_101.png
index 6cc9d0c1aa..c5ba9e0302 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/certificates_uploaded_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/certificates_uploaded_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_updater_sketch_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_updater_sketch_101.png
index 803ea9781d..9b0b2e60c0 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_updater_sketch_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_updater_sketch_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_updater_tool_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_updater_tool_101.png
index 379c1c3bec..75c12f0d65 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_updater_tool_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_updater_tool_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_uploaded_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_uploaded_101.png
index c0b1bf0612..f1dbac0c0e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_uploaded_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/firmware_uploaded_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/wifi101_wifinina_firmware_updater.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/wifi101_wifinina_firmware_updater.png
index c0ab1c438d..dd5719e486 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/wifi101_wifinina_firmware_updater.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/firmware-updater/assets/wifi101_wifinina_firmware_updater.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-battery-life/assets/ArduinoMKR1000Ammeter_bb.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-battery-life/assets/ArduinoMKR1000Ammeter_bb.png
index 9bda9e44c7..98468ee5ab 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-battery-life/assets/ArduinoMKR1000Ammeter_bb.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-battery-life/assets/ArduinoMKR1000Ammeter_bb.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-battery-life/assets/ArduinoMKR1000Battery_bb.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-battery-life/assets/ArduinoMKR1000Battery_bb.png
index 347900f108..1111ff0f3d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-battery-life/assets/ArduinoMKR1000Battery_bb.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-battery-life/assets/ArduinoMKR1000Battery_bb.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/MKR1000_T1_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/MKR1000_T1_IMG01.png
index e4f7838d17..ad3fbb58eb 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/MKR1000_T1_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/MKR1000_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_02.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_02.png
index 9c309429bf..5ac981ad86 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_03.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_03.png
index cad22ef4ea..7f241ff6ea 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_04.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_04.png
index 12a75015c4..577422d34c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_05.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_05.png
index 80c292e32a..daef0f76f7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_05.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_06.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_06.png
index a859562691..cb1801ec1b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_06.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_07.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_07.png
index 741d8145ff..2cd1e2b604 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_07.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-connect-to-wifi/assets/mkr_tutorial_02_img_07.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG01.png
index bf1aad9501..05a7be8a62 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG02.png
index 3050bf49f6..7394c2de6c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG03.png
index 92bed0fbb7..45e5afb91c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG04.png
index 09fb51cbc1..9bfcb54dce 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/assets/MKR1000_T2_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG01.png
index 6e2963bf27..17a044e821 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG02.png
index f3d228be05..22e386455d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG03.png
index a3f7ac4a97..0442b6cc09 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG04.png
index 3b2588542c..7ff367d8bd 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG05.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG05.png
index e5aca2a886..7af2f846a8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG05.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG06.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG06.png
index a5ee62fdb5..cc5d22f055 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG06.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG07.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG07.png
index 0ab3da98fa..4c95657970 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG07.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG07.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG08.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG08.png
index e0581434e5..41af57572b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG08.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/assets/MKR1000_T3_IMG08.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG01.png
index fb2bbb87bb..4573715d9b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG02.png
index d17395c66f..54319a1a78 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG03.png
index 1685e3aed5..7fd42e095e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG04.png
index d708ff2ed4..d1a341cc4e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/assets/MKR1000_T4_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG01.png
index 6bb64d375a..9dc45af985 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG02.png
index 8a4dc4ec29..c04e9227c0 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG03.png
index 4ee6d0ce6d..72faccc4fc 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG04.png
index d714312cbb..4bc223ce5e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG05.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG05.png
index d3740b1162..9bbcf7f420 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG05.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG06.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG06.png
index 19b0f892b9..ccd8710b84 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG06.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/assets/MKR1000_T5_IMG06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/MKR1000_RevA_B_20copy.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/MKR1000_RevA_B_20copy.png
index 6ff2a34db4..fbe61647c6 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/MKR1000_RevA_B_20copy.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/MKR1000_RevA_B_20copy.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/certificates_upload_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/certificates_upload_101.png
index c33e65ec15..254483f153 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/certificates_upload_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/certificates_upload_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/certificates_uploaded_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/certificates_uploaded_101.png
index 6cc9d0c1aa..c5ba9e0302 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/certificates_uploaded_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/certificates_uploaded_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_updater_sketch_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_updater_sketch_101.png
index 803ea9781d..9b0b2e60c0 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_updater_sketch_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_updater_sketch_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_updater_tool_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_updater_tool_101.png
index 379c1c3bec..75c12f0d65 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_updater_tool_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_updater_tool_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_uploaded_101.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_uploaded_101.png
index c0b1bf0612..f1dbac0c0e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_uploaded_101.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/firmware_uploaded_101.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/wifi101_wifinina_firmware_updater.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/wifi101_wifinina_firmware_updater.png
index c0ab1c438d..dd5719e486 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/wifi101_wifinina_firmware_updater.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-library-examples/assets/wifi101_wifinina_firmware_updater.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/ArduinoMKR1000_bb.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/ArduinoMKR1000_bb.png
index 06bf26da20..eea05b9f6f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/ArduinoMKR1000_bb.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/ArduinoMKR1000_bb.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA1.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA1.png
index 3675b55fc5..e6bc13ed41 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA1.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA1.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA2.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA2.png
index 888cb30dea..1dcbd3f17c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA2.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA3.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA3.png
index c6cdd4cd4e..b7dc44fb52 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA3.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA3.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA4.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA4.png
index 688560b29c..8c7eedeff9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA4.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA4.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA5a.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA5a.png
index 2a7f059680..1ad2a7faaa 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA5a.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA5a.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA6.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA6.png
index ea3200da6e..af407f9c1f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA6.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA6.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA7.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA7.png
index 20fe5d249e..0b2968d32b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA7.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA7.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA8.png b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA8.png
index 2821f97a8a..495407020b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA8.png and b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/wifi-101-ota/assets/WiFiOTA8.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/image.svg b/content/hardware/01.mkr/01.boards/mkr-fox-1200/image.svg
index 965eacbc57..0825849a87 100644
--- a/content/hardware/01.mkr/01.boards/mkr-fox-1200/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-fox-1200/image.svg
@@ -1,1255 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/interactive/ABX00014-pinout.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/interactive/ABX00014-pinout.png
index ad1954bdfb..a1e0755160 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/interactive/ABX00014-pinout.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/interactive/ABX00014-pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/pinout.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/pinout.png
index 47f8348da1..39014cc371 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/pinout.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-movement-trigger/assets/2017-07-10-102532_1589x339_scrot_rZLYCKniB0.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-movement-trigger/assets/2017-07-10-102532_1589x339_scrot_rZLYCKniB0.png
index 8f167cdad0..321feeb600 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-movement-trigger/assets/2017-07-10-102532_1589x339_scrot_rZLYCKniB0.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-movement-trigger/assets/2017-07-10-102532_1589x339_scrot_rZLYCKniB0.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-movement-trigger/assets/2017-07-10-102547_721x597_scrot_YyrFIJ2FbV.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-movement-trigger/assets/2017-07-10-102547_721x597_scrot_YyrFIJ2FbV.png
index cdbc025e35..8bfcf2bc52 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-movement-trigger/assets/2017-07-10-102547_721x597_scrot_YyrFIJ2FbV.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-movement-trigger/assets/2017-07-10-102547_721x597_scrot_YyrFIJ2FbV.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/1_Hq8YszSW57.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/1_Hq8YszSW57.png
index 11012aae08..2dc5da3b1f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/1_Hq8YszSW57.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/1_Hq8YszSW57.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181130_1319x555_scrot_xIFbqIRrwJ.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181130_1319x555_scrot_xIFbqIRrwJ.png
index 44bc56b473..01b9c31405 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181130_1319x555_scrot_xIFbqIRrwJ.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181130_1319x555_scrot_xIFbqIRrwJ.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181233_547x732_scrot_B6IpPZo7FW.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181233_547x732_scrot_B6IpPZo7FW.png
index 05ef254506..b9aaae4eb3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181233_547x732_scrot_B6IpPZo7FW.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181233_547x732_scrot_B6IpPZo7FW.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181450_1097x788_scrot_PRlvnPeNfZ.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181450_1097x788_scrot_PRlvnPeNfZ.png
index 49e469404f..000b994fb3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181450_1097x788_scrot_PRlvnPeNfZ.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181450_1097x788_scrot_PRlvnPeNfZ.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181503_779x384_scrot_EQdWfi5cZN.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181503_779x384_scrot_EQdWfi5cZN.png
index 0d5f9fe98e..7f21472622 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181503_779x384_scrot_EQdWfi5cZN.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181503_779x384_scrot_EQdWfi5cZN.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181523_596x797_scrot_YBbBPFdpON.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181523_596x797_scrot_YBbBPFdpON.png
index 7f79caa4fc..ee4d1c623f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181523_596x797_scrot_YBbBPFdpON.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181523_596x797_scrot_YBbBPFdpON.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181800_589x361_scrot_KZ9gpPSaaH.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181800_589x361_scrot_KZ9gpPSaaH.png
index 0fef44be4d..1507402ffc 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181800_589x361_scrot_KZ9gpPSaaH.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2017-03-27-181800_589x361_scrot_KZ9gpPSaaH.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2_edit_GTyVPD287A.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2_edit_GTyVPD287A.png
index ee321381b7..0d82a399d3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2_edit_GTyVPD287A.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2_edit_GTyVPD287A.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2_k6P30hcsDg.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2_k6P30hcsDg.png
index db6fa76373..b09bd02305 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2_k6P30hcsDg.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/2_k6P30hcsDg.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/3_callbacks_7EhCtULJvp.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/3_callbacks_7EhCtULJvp.png
index b441b985a2..9fe754763d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/3_callbacks_7EhCtULJvp.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/3_callbacks_7EhCtULJvp.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/4_callbacks_3vY6hHeVX5.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/4_callbacks_3vY6hHeVX5.png
index 469b2a9847..c9d6e18a99 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/4_callbacks_3vY6hHeVX5.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/4_callbacks_3vY6hHeVX5.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/5_callbacks_BfT0WriuOm.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/5_callbacks_BfT0WriuOm.png
index cdf177b806..76c7cbabf5 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/5_callbacks_BfT0WriuOm.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/5_callbacks_BfT0WriuOm.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/6_new_callback_1nmdMMud2F.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/6_new_callback_1nmdMMud2F.png
index 56aba017be..b3a1b79a59 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/6_new_callback_1nmdMMud2F.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/6_new_callback_1nmdMMud2F.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/socials_mkrfox1200_bVlDZFCxco.jpg b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/socials_mkrfox1200_bVlDZFCxco.jpg
index 61180fa590..68dfc8d2c1 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/socials_mkrfox1200_bVlDZFCxco.jpg and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/mkr-fox-1200-weather-monitor/assets/socials_mkrfox1200_bVlDZFCxco.jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/SigfoxEventTriggeremail.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/SigfoxEventTriggeremail.png
index 15e92cb297..c3cf5ce912 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/SigfoxEventTriggeremail.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/SigfoxEventTriggeremail.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend1.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend1.png
index 68329f87d4..bc560ba21e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend1.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend1.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend2.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend2.png
index d1bde6642d..10f915aab4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend2.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend3.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend3.png
index 0d0603697a..7bb16a54fc 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend3.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend3.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend4.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend4.png
index 71df95b425..03655bd85c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend4.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend4.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend5.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend5.png
index a7a31cf2a4..3f72722d14 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend5.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/backend5.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/event-trigger-circuit.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/event-trigger-circuit.png
index 8ab0e667ba..4fe587e9a9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/event-trigger-circuit.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-event-trigger/assets/event-trigger-circuit.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFOX1200_FirstConfig_Circuit.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFOX1200_FirstConfig_Circuit.png
index 91750b590c..e7b9849593 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFOX1200_FirstConfig_Circuit.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFOX1200_FirstConfig_Circuit.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_readPAC.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_readPAC.png
index 977ca2e291..839deaf160 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_readPAC.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_readPAC.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_sendMessage.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_sendMessage.png
index f86064fe79..7ba1515f61 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_sendMessage.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_sendMessage.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_sendMessage1.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_sendMessage1.png
index f49b670236..9fab8504d2 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_sendMessage1.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/MKRFox_sendMessage1.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_1.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_1.png
index 10c09afe6a..8f73d1301f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_1.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_1.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_2.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_2.png
index d15b793d1c..e1bf059e14 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_2.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_3.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_3.png
index 7ef2ead74f..981dfa8302 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_3.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_3.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_4.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_4.png
index 966c806321..7e65089b0b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_4.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_4.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_5.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_5.png
index 6be346e543..c83b7156ac 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_5.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_5.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_6.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_6.png
index 68336683cf..fa66a525a0 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_6.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_6.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_7.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_7.png
index 3fa7b0704e..c57ee3a3f0 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_7.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_7.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_8.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_8.png
index 68b2e9e522..3788467c32 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_8.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_8.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_9.png b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_9.png
index 5657422a8b..0c599b25bd 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_9.png and b/content/hardware/01.mkr/01.boards/mkr-fox-1200/tutorials/sigfox-first-configuration/assets/Sigfox_9.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/image.svg b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/image.svg
index db14600d0c..8296a07fb9 100644
--- a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/image.svg
@@ -1,1021 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/interactive/ABX00018-pinout.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/interactive/ABX00018-pinout.png
index 9dc85b2567..3c7cb750f2 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/interactive/ABX00018-pinout.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/interactive/ABX00018-pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-dtmf/assets/dtmf_hwrobPpQIT.jpg b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-dtmf/assets/dtmf_hwrobPpQIT.jpg
index bb1b8a062d..e3523fe4c3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-dtmf/assets/dtmf_hwrobPpQIT.jpg and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-dtmf/assets/dtmf_hwrobPpQIT.jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-dtmf/assets/mkrgsm1400dtmf_l94ODUYXzR.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-dtmf/assets/mkrgsm1400dtmf_l94ODUYXzR.png
index 85cf620878..4113a7305c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-dtmf/assets/mkrgsm1400dtmf_l94ODUYXzR.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-dtmf/assets/mkrgsm1400dtmf_l94ODUYXzR.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-i2s/assets/img_0547_DjftN61d15.jpg b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-i2s/assets/img_0547_DjftN61d15.jpg
index 6355a86790..7f9932e258 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-i2s/assets/img_0547_DjftN61d15.jpg and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/arduino-mkr-gsm-1400-and-i2s/assets/img_0547_DjftN61d15.jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG01.png
index bba0969086..a06b35257e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG02.png
index 07540d336e..aed05e7353 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG03.png
index 8dba272635..6d1d0ec658 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-call-lock/assets/MKRGSM_T9_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG01.png
index a69bc37de3..1bd957f064 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG02.png
index 4e57885625..197a432e55 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG03.png
index b829c3e398..67740ea8be 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/MKRGSM_T3_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/mkr_tutorial_11_img_04.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/mkr_tutorial_11_img_04.png
index 172ce1bf7a..0866e84caf 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/mkr_tutorial_11_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/mkr_tutorial_11_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/mkr_tutorial_11_img_05.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/mkr_tutorial_11_img_05.png
index e5aca2a886..7af2f846a8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/mkr_tutorial_11_img_05.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-led-switch/assets/mkr_tutorial_11_img_05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG01.png
index 22fc4e60e3..aecd25c0d8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG02.png
index a0c65827da..7f540ca144 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG03.png
index bb778b81d1..a3def1684a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-location/assets/MKRGSM_T6_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG01.png
index 8541311ad5..774b87e764 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG02.png
index 9760a310bf..819a9a0035 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG03.png
index 9266207ca6..d77e770eed 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-make-call/assets/MKRGSM_T11_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MKRGSM_T7_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MKRGSM_T7_IMG01.png
index 1254ce6d48..5f01a8f1c9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MKRGSM_T7_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MKRGSM_T7_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MKRGSM_T7_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MKRGSM_T7_IMG02.png
index 5b6950e177..3d81146dba 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MKRGSM_T7_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MKRGSM_T7_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MQTT_LIB.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MQTT_LIB.png
index 46d26d1ce1..d08349483f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MQTT_LIB.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/MQTT_LIB.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/mkr_tutorial_11_img_02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/mkr_tutorial_11_img_02.png
index 6e2963bf27..17a044e821 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/mkr_tutorial_11_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/mkr_tutorial_11_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/mkr_tutorial_11_img_03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/mkr_tutorial_11_img_03.png
index f3d228be05..22e386455d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/mkr_tutorial_11_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt-env/assets/mkr_tutorial_11_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG01.png
index e445a7152c..43e8d78b22 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG02.png
index 46d26d1ce1..d08349483f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG03.png
index 544350a7ee..ab9dced465 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/MKRGSM_T5_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/mkr_tutorial_11_img_02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/mkr_tutorial_11_img_02.png
index 6e2963bf27..17a044e821 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/mkr_tutorial_11_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/mkr_tutorial_11_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/mkr_tutorial_11_img_03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/mkr_tutorial_11_img_03.png
index f3d228be05..22e386455d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/mkr_tutorial_11_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-mqtt/assets/mkr_tutorial_11_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG01.png
index fdea6cc3f0..fb05aafecd 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG02.png
index be79c20968..edb9de95dd 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG03.png
index e2d4fd5c0e..d608f3650a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG04.png
index fdccb97193..e92dbe6ea4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-call/assets/MKRGSM_T8_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG01.png
index d0dabea8b4..d0550714c2 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG02.png
index 553081fbd6..eb98294a36 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG03.png
index 4f4ff0b40a..4c2b5c1221 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-receive-sms/assets/MKRGSM_T4_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG00.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG00.png
index 36e92643c4..e9163ddd95 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG00.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG00.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG01.png
index 9b8e8f166c..09f3775634 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG02.png
index 21c825517a..30fe86150a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/MKRGSM_T2_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/SECRET_TAB.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/SECRET_TAB.png
index be79c20968..edb9de95dd 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/SECRET_TAB.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-scan-networks/assets/SECRET_TAB.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG01.png
index dbea988c38..41c901bbbd 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG02.png
index 8724551cb6..ff2ea7ff7d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG03.png
index ed17756ef2..449c9b80ea 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG04.png
index f17a3e39e3..5f552bc88e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG05.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG05.png
index 5ae729daf8..518cb255de 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG05.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG06.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG06.png
index 18a7a7e743..25bcde8408 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG06.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/assets/MKRGSM_T1_IMG06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG01.png
index 71953e1075..e0409d40a7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG02.png
index c7e5069ff1..ceb3db0009 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG03.png
index cfb5ac7ed4..920deb0a51 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG04.png
index e1bac0d926..dbe5f0f593 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-sms-env/assets/MKRGSM_T10_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/mkr-gsm-library-examples/assets/mkr-gsm-circuit.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/mkr-gsm-library-examples/assets/mkr-gsm-circuit.png
index a69bc37de3..1bd957f064 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/mkr-gsm-library-examples/assets/mkr-gsm-circuit.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/mkr-gsm-library-examples/assets/mkr-gsm-circuit.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-01-14_at_1_41_18_pm_eozydjsucj_MTEFBZMi4I.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-01-14_at_1_41_18_pm_eozydjsucj_MTEFBZMi4I.png
index ffa9319ece..283e670c7a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-01-14_at_1_41_18_pm_eozydjsucj_MTEFBZMi4I.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-01-14_at_1_41_18_pm_eozydjsucj_MTEFBZMi4I.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-13_at_4_34_59_pm_AnQOUII5Jp.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-13_at_4_34_59_pm_AnQOUII5Jp.png
index e7fbc80eac..faf1e81304 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-13_at_4_34_59_pm_AnQOUII5Jp.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-13_at_4_34_59_pm_AnQOUII5Jp.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_27_01_pm_KbQ1IB7wOr.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_27_01_pm_KbQ1IB7wOr.png
index 8b4c494426..d560deb898 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_27_01_pm_KbQ1IB7wOr.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_27_01_pm_KbQ1IB7wOr.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_30_04_pm_jofsNyf2L7.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_30_04_pm_jofsNyf2L7.png
index 6d54c35058..4cb748388b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_30_04_pm_jofsNyf2L7.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_30_04_pm_jofsNyf2L7.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_31_40_pm_pThCYKqA5a.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_31_40_pm_pThCYKqA5a.png
index c62dc1b3d8..9d491fdc73 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_31_40_pm_pThCYKqA5a.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_31_40_pm_pThCYKqA5a.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_35_20_pm_AICJPvHRZK.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_35_20_pm_AICJPvHRZK.png
index ec658b3205..f897c57268 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_35_20_pm_AICJPvHRZK.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_35_20_pm_AICJPvHRZK.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_36_53_pm_hVf2yr3D9Y.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_36_53_pm_hVf2yr3D9Y.png
index 65dd7dfa8a..6d45c7c086 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_36_53_pm_hVf2yr3D9Y.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_36_53_pm_hVf2yr3D9Y.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_38_21_pm_t7iWRuxyV7.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_38_21_pm_t7iWRuxyV7.png
index f5dc923187..542b1d0f62 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_38_21_pm_t7iWRuxyV7.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_38_21_pm_t7iWRuxyV7.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_39_23_pm_jO4T6GzT4J.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_39_23_pm_jO4T6GzT4J.png
index 60edc6a802..826b055f6f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_39_23_pm_jO4T6GzT4J.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_39_23_pm_jO4T6GzT4J.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_40_13_pm_Od7PToPAm8.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_40_13_pm_Od7PToPAm8.png
index 1cf98ca34a..4312feac5c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_40_13_pm_Od7PToPAm8.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_40_13_pm_Od7PToPAm8.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_41_50_pm_ZijtDPbdcP.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_41_50_pm_ZijtDPbdcP.png
index da2416edf5..ee65d4ebd4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_41_50_pm_ZijtDPbdcP.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_41_50_pm_ZijtDPbdcP.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_43_45_pm_RwQFPttoY8.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_43_45_pm_RwQFPttoY8.png
index 7e117dfd41..0878a9f0b9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_43_45_pm_RwQFPttoY8.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_43_45_pm_RwQFPttoY8.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_47_04_pm_Ic1OhooEh0.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_47_04_pm_Ic1OhooEh0.png
index 026b4b6964..ba5877a182 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_47_04_pm_Ic1OhooEh0.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_47_04_pm_Ic1OhooEh0.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_47_04_pm_Md4uJI2C2M.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_47_04_pm_Md4uJI2C2M.png
index 026b4b6964..ba5877a182 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_47_04_pm_Md4uJI2C2M.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_47_04_pm_Md4uJI2C2M.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_48_40_pm_RqRlrWV87z.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_48_40_pm_RqRlrWV87z.png
index 2eb44e4b39..f9456f77fd 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_48_40_pm_RqRlrWV87z.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_48_40_pm_RqRlrWV87z.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_50_57_pm_weYXXV4ND4.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_50_57_pm_weYXXV4ND4.png
index a9f3071862..418eed54b7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_50_57_pm_weYXXV4ND4.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_2_50_57_pm_weYXXV4ND4.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_05_45_pm_4qZWuNKyVx.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_05_45_pm_4qZWuNKyVx.png
index 6ffdfc5a0e..67b513ca18 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_05_45_pm_4qZWuNKyVx.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_05_45_pm_4qZWuNKyVx.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_14_52_pm_ylhrmhGyp0.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_14_52_pm_ylhrmhGyp0.png
index 8b9c6ca0a3..5a8fd3fe1f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_14_52_pm_ylhrmhGyp0.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_14_52_pm_ylhrmhGyp0.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_15_54_pm_zMrlgRg7xg.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_15_54_pm_zMrlgRg7xg.png
index 88de4beb1c..6ee12d21bc 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_15_54_pm_zMrlgRg7xg.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_15_54_pm_zMrlgRg7xg.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_17_21_pm_46zWuYGbqC.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_17_21_pm_46zWuYGbqC.png
index 640cf88952..6cace7ddc8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_17_21_pm_46zWuYGbqC.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_17_21_pm_46zWuYGbqC.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_19_45_pm_qLkHHH1Joo.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_19_45_pm_qLkHHH1Joo.png
index 747e548d19..915b524dd4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_19_45_pm_qLkHHH1Joo.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_19_45_pm_qLkHHH1Joo.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_22_26_pm_vq0ec5WPy4.png b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_22_26_pm_vq0ec5WPy4.png
index 4fed36728d..4f7ed452e8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_22_26_pm_vq0ec5WPy4.png and b/content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/securely-connecting-a-mkr-gsm-1400-to-google-cloud-iot-core/assets/screen_shot_2019-03-14_at_3_22_26_pm_vq0ec5WPy4.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/image.svg b/content/hardware/01.mkr/01.boards/mkr-nb-1500/image.svg
index e522b6faa4..ab22838492 100644
--- a/content/hardware/01.mkr/01.boards/mkr-nb-1500/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-nb-1500/image.svg
@@ -1,2054 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/interactive/ABX00019-pinout.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/interactive/ABX00019-pinout.png
index 5cec7bf4d7..91d5089f2f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/interactive/ABX00019-pinout.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/interactive/ABX00019-pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/mkr-nb-library-examples/assets/mkr-nb-circuit.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/mkr-nb-library-examples/assets/mkr-nb-circuit.png
index 8bf7ab1e32..9bea9ad6ac 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/mkr-nb-library-examples/assets/mkr-nb-circuit.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/mkr-nb-library-examples/assets/mkr-nb-circuit.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG01.png
index 8bf7ab1e32..9bea9ad6ac 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG02.png
index e104f95af9..dd18715f2d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG03.png
index fe2bf7dcd3..ddcdccd872 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/MKRNB_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/NEWTAB_1.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/NEWTAB_1.png
index 172ce1bf7a..0866e84caf 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/NEWTAB_1.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/NEWTAB_1.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/NEWTAB_2.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/NEWTAB_2.png
index e5aca2a886..7af2f846a8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/NEWTAB_2.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-led-switch/assets/NEWTAB_2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG01.png
index fa898d3a4e..4400123220 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG02.png
index 2f8953a9ab..3534869e60 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG03.png
index 0c185774ed..b87cf3126c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-recieve-sms/assets/MKRNB_T2_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-scan-network/assets/MKRNB_T2_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-scan-network/assets/MKRNB_T2_IMG01.png
index 66695b41c4..1b43f51e35 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-scan-network/assets/MKRNB_T2_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-scan-network/assets/MKRNB_T2_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG01.png
index 66695b41c4..1b43f51e35 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG02.png
index 4505d63326..d3d7d85a3b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG03.png
index 3cc64f4cf0..b85c2f001f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG04.png
index 2207bc0351..eaa2c57d54 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG05.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG05.png
index dfd35c75dd..b4d666e846 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG05.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/assets/MKRNB_T3_IMG05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG01.png
index 66695b41c4..1b43f51e35 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG02.png
index 27176ed627..c5c9473370 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG03.png
index 71f7c179ca..d2a737f34c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-web-client/assets/MKRNB_T4_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-01-14_at_1_41_18_pm_eozydjsucj_MTEFBZMi4I.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-01-14_at_1_41_18_pm_eozydjsucj_MTEFBZMi4I.png
index 9b89298699..5ebd981917 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-01-14_at_1_41_18_pm_eozydjsucj_MTEFBZMi4I.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-01-14_at_1_41_18_pm_eozydjsucj_MTEFBZMi4I.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_12_43_am_ydThma23S0.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_12_43_am_ydThma23S0.png
index 2d1d30ae36..c79be4c8fc 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_12_43_am_ydThma23S0.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_12_43_am_ydThma23S0.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_18_42_am_0nF40PXFUM.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_18_42_am_0nF40PXFUM.png
index ed3254006c..e2404b054a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_18_42_am_0nF40PXFUM.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_18_42_am_0nF40PXFUM.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_31_59_am_BCiXzzVb6B.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_31_59_am_BCiXzzVb6B.png
index 1a2f9bf250..7ab8002c2f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_31_59_am_BCiXzzVb6B.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_31_59_am_BCiXzzVb6B.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_32_55_am_70FtZx2ONv.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_32_55_am_70FtZx2ONv.png
index c951d2d511..b71003bd39 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_32_55_am_70FtZx2ONv.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_32_55_am_70FtZx2ONv.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_33_57_am_WfK9CNlAeW.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_33_57_am_WfK9CNlAeW.png
index 875c82889a..d4a5a897a4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_33_57_am_WfK9CNlAeW.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_33_57_am_WfK9CNlAeW.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_38_11_am_KIC539EmPB.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_38_11_am_KIC539EmPB.png
index 28eb4125fe..c9b8200018 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_38_11_am_KIC539EmPB.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_38_11_am_KIC539EmPB.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_39_50_am_miK5xAbnkk.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_39_50_am_miK5xAbnkk.png
index 8f1f31e3c3..6f0fb44ea7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_39_50_am_miK5xAbnkk.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_39_50_am_miK5xAbnkk.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_41_24_am_Pc6ceryFpG.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_41_24_am_Pc6ceryFpG.png
index ae33ab40e4..7ac7f270f0 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_41_24_am_Pc6ceryFpG.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_41_24_am_Pc6ceryFpG.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_43_03_am_UtlINb9CIv.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_43_03_am_UtlINb9CIv.png
index 02750a0f2f..5a7ec7d049 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_43_03_am_UtlINb9CIv.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_43_03_am_UtlINb9CIv.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_44_53_am_SScl9pCOoY.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_44_53_am_SScl9pCOoY.png
index 36fc39b0e6..bd27a12ed1 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_44_53_am_SScl9pCOoY.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_44_53_am_SScl9pCOoY.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_46_27_am_mW0Ct5VJgL.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_46_27_am_mW0Ct5VJgL.png
index 75a96ba4e8..9719f60a14 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_46_27_am_mW0Ct5VJgL.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_46_27_am_mW0Ct5VJgL.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_48_58_am_N4DTasqUY8.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_48_58_am_N4DTasqUY8.png
index 009c6321d0..7a402bd8c4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_48_58_am_N4DTasqUY8.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_11_48_58_am_N4DTasqUY8.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_06_14_pm_554ggffxiP.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_06_14_pm_554ggffxiP.png
index 944006a2ae..064bb90b1e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_06_14_pm_554ggffxiP.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_06_14_pm_554ggffxiP.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_07_18_pm_jZHRAyebN2.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_07_18_pm_jZHRAyebN2.png
index 36664d0728..1ac1aa97ec 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_07_18_pm_jZHRAyebN2.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_07_18_pm_jZHRAyebN2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_10_00_pm_gG05TyCAkn.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_10_00_pm_gG05TyCAkn.png
index 26fd7dc194..37bb107525 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_10_00_pm_gG05TyCAkn.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_10_00_pm_gG05TyCAkn.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_17_47_pm_742RPWyv70.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_17_47_pm_742RPWyv70.png
index 9a318e03ec..80519ecb09 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_17_47_pm_742RPWyv70.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_12_17_47_pm_742RPWyv70.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_3_52_49_pm_Z5dD8i6OYs.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_3_52_49_pm_Z5dD8i6OYs.png
index 6ed1f98258..897d7bb760 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_3_52_49_pm_Z5dD8i6OYs.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/securely-connecting-an-arduino-nb-1500-to-azure-iot-hub/assets/screen_shot_2019-02-06_at_3_52_49_pm_Z5dD8i6OYs.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/setting-radio-access/assets/MKRNB_T5_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/setting-radio-access/assets/MKRNB_T5_IMG01.png
index 1dc9d8a844..f11a43c32f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/setting-radio-access/assets/MKRNB_T5_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/setting-radio-access/assets/MKRNB_T5_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/setting-radio-access/assets/MKRNB_T5_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/setting-radio-access/assets/MKRNB_T5_IMG02.png
index 2f102ede0f..fbfd3ab9ea 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/setting-radio-access/assets/MKRNB_T5_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/setting-radio-access/assets/MKRNB_T5_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_4000_Block_Diagram.svg b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_4000_Block_Diagram.svg
index 760889367a..99e7596d11 100644
--- a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_4000_Block_Diagram.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_4000_Block_Diagram.svg
@@ -1,140 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_Pinout.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_Pinout.png
index ca6ca60d40..51b8b3372d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_Pinout.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_Pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_Pinout_fpga.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_Pinout_fpga.png
index e108a6607c..604bd3cc6b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_Pinout_fpga.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/MKR_Vidor_Pinout_fpga.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/Vidor_Mappa.jpg b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/Vidor_Mappa.jpg
index 4aa64ffd88..3f98760318 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/Vidor_Mappa.jpg and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/Vidor_Mappa.jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/image.svg b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/image.svg
index 738981101a..aa9a9a03c3 100644
--- a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/datasheets/assets/image.svg
@@ -1,778 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/image.svg b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/image.svg
index 738981101a..aa9a9a03c3 100644
--- a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/image.svg
@@ -1,778 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/interactive/ABX00022-pinout.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/interactive/ABX00022-pinout.png
index ca6ca60d40..51b8b3372d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/interactive/ABX00022-pinout.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/interactive/ABX00022-pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-draw-logo/assets/vidor-circuit.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-draw-logo/assets/vidor-circuit.png
index c00f82c573..7bbda2478b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-draw-logo/assets/vidor-circuit.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-draw-logo/assets/vidor-circuit.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-enable-cam/assets/vidor-circuit.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-enable-cam/assets/vidor-circuit.png
index c00f82c573..7bbda2478b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-enable-cam/assets/vidor-circuit.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-enable-cam/assets/vidor-circuit.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-encoder/assets/vidor-circuit.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-encoder/assets/vidor-circuit.png
index c00f82c573..7bbda2478b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-encoder/assets/vidor-circuit.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-encoder/assets/vidor-circuit.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/BoardManagerVidor.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/BoardManagerVidor.png
index fdd19b64bc..34d8320f8e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/BoardManagerVidor.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/BoardManagerVidor.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/QuartusSerial.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/QuartusSerial.png
index 519d9216d1..32ca6945c9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/QuartusSerial.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/QuartusSerial.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/QuartusVidor.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/QuartusVidor.png
index f4a4b42c0e..a382e07119 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/QuartusVidor.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/QuartusVidor.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/Vidor_Mappa.jpg b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/Vidor_Mappa.jpg
index 4aa64ffd88..3f98760318 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/Vidor_Mappa.jpg and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/assets/Vidor_Mappa.jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG01.png
index 92fb56dffb..e1ac637d20 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG02.png
index 92bed0fbb7..45e5afb91c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG03.png
index 09fb51cbc1..9bfcb54dce 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG04.png
index b88b78b7c8..0ad5954ded 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-hosting-a-webserver/assets/MKRVIDOR4000_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-qr-recognition/assets/vidor-circuit.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-qr-recognition/assets/vidor-circuit.png
index c00f82c573..7bbda2478b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-qr-recognition/assets/vidor-circuit.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-qr-recognition/assets/vidor-circuit.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/Compile.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/Compile.png
index fd8b492736..8b9b5a1013 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/Compile.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/Compile.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/DownloadGithub.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/DownloadGithub.png
index e8ce570c24..7a6450a764 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/DownloadGithub.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/DownloadGithub.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/FromGitToQUartus.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/FromGitToQUartus.png
index fc065d4788..39752fe75a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/FromGitToQUartus.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/FromGitToQUartus.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/InstallPage.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/InstallPage.png
index eefbbceca6..090b870450 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/InstallPage.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/InstallPage.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/IntheIPCtalog.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/IntheIPCtalog.png
index e736874861..dc96c6b37f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/IntheIPCtalog.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/IntheIPCtalog.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/NewProject.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/NewProject.png
index e533c065a3..a30475dcec 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/NewProject.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/NewProject.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/PinPlanner.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/PinPlanner.png
index a7e054da99..8f3b2bda7d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/PinPlanner.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/PinPlanner.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/ProjectName.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/ProjectName.png
index 61fbc4021d..d98bac6601 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/ProjectName.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/ProjectName.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectCyclone.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectCyclone.png
index f2e56f1b58..3053289bef 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectCyclone.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectCyclone.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectDevices.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectDevices.png
index c8285e6e7e..0f2d8299a2 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectDevices.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectDevices.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectFPGA.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectFPGA.png
index 00346bd815..80f5f8e135 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectFPGA.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectFPGA.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectNewFiles.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectNewFiles.png
index b1b16a6cb9..d1ca315cf8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectNewFiles.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectNewFiles.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectVHLD.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectVHLD.png
index a5e47795cd..0a16fabcc2 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectVHLD.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/SelectVHLD.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/USERInterface.png b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/USERInterface.png
index 10e0e67d03..8a997699e4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/USERInterface.png and b/content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-quartus-vhdl/assets/USERInterface.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/image.svg b/content/hardware/01.mkr/01.boards/mkr-wan-1300/image.svg
index f747f35f07..17e45a9763 100644
--- a/content/hardware/01.mkr/01.boards/mkr-wan-1300/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-wan-1300/image.svg
@@ -1,1252 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/interactive/ABX00017-pinout.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/interactive/ABX00017-pinout.png
index 08eb647197..255646c8ed 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/interactive/ABX00017-pinout.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/interactive/ABX00017-pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG01.png
index 21e2c46320..fe69f15797 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG02.png
index 2cb2256e55..fd2a980676 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG03.png
index c2456e65b6..97252d7007 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG04.png
index 8cee8f86af..cbb34b1965 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-button-press/assets/WAN1300_T3_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG01.png
index bdd3e70dbe..1885527403 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG02.png
index 041513ba75..239d8afc65 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG04.png
index 8423c0d1ec..a2560efd47 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-message/assets/WAN1300_T4_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-send-and-receive/assets/WAN1300_T1_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-send-and-receive/assets/WAN1300_T1_IMG01.png
index b3f7d4bf04..437c4b1c76 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-send-and-receive/assets/WAN1300_T1_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-send-and-receive/assets/WAN1300_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG01.png
index d3dc27feb9..27c6431bd3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG02.png
index b3f7d4bf04..437c4b1c76 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG04.png
index c2456e65b6..97252d7007 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG05.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG05.png
index ae4052483b..b5a3371b29 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG05.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/lora-sensor-data/assets/WAN1300_T2_IMG05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG00.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG00.png
index bc88cf33f9..247a8e1f76 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG00.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG00.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG01.png
index 84a65619eb..216a2668ec 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG02.png
index 38edc6dd2f..496f65478d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG04.png
index fdf258e3dd..3fabd9964f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG05.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG05.png
index d60b929e3f..76855c03e8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG05.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG06.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG06.png
index 9f9856d4e9..42790e1621 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG06.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG06_02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG06_02.png
index 00e49fd178..421fa8a6cb 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG06_02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG06_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG07.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG07.png
index 8c941d2e27..eff58a26e4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG07.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG07.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG08.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG08.png
index e997f376f2..7a781d97ed 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG08.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG08.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG09.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG09.png
index d7951ad1c9..870699838f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG09.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG09.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG10.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG10.png
index ab5ca11efc..779db97dd7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG10.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG10.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG12.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG12.png
index b3067731a8..d25215e638 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG12.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG12.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG13.png b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG13.png
index d382ce7a3c..6efbc7d592 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG13.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1300/tutorials/the-things-network/assets/WAN1300_T6_IMG13.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/board-outline.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/board-outline.png
index fcfe3ccf90..a6f22d6b83 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/board-outline.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/board-outline.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/connector-positions.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/connector-positions.png
index 9df7ec4ea2..e54efa2da9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/connector-positions.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/connector-positions.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/mounting-holes.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/mounting-holes.png
index 2c7629ac6b..da7130e0ea 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/mounting-holes.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/datasheet/assets/mounting-holes.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/image.svg b/content/hardware/01.mkr/01.boards/mkr-wan-1310/image.svg
index 2a211e1a9f..5fbe01d753 100644
--- a/content/hardware/01.mkr/01.boards/mkr-wan-1310/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-wan-1310/image.svg
@@ -1,1609 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/interactive/ABX00029-pinout.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/interactive/ABX00029-pinout.png
index 28361a24e0..ce829a4c7f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/interactive/ABX00029-pinout.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/interactive/ABX00029-pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG01.png
index b5ab2f0722..043501d263 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG02.png
index 830c6b2d3d..0f0fe98959 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG03.png
index c2456e65b6..97252d7007 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG04.png
index 8cee8f86af..cbb34b1965 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/assets/WAN1310_T3_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG01.png
index 66078476fb..d1c19c9572 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG04.png
index 8423c0d1ec..a2560efd47 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG06.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG06.png
index 041513ba75..239d8afc65 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG06.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-message/assets/WAN1310_T4_IMG06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-send-and-receive/assets/WAN1310_T1_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-send-and-receive/assets/WAN1310_T1_IMG01.png
index f5dccb3441..79016bf71e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-send-and-receive/assets/WAN1310_T1_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-send-and-receive/assets/WAN1310_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-send-and-receive/assets/WAN1310_T1_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-send-and-receive/assets/WAN1310_T1_IMG02.png
index cd68e39edf..d960079840 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-send-and-receive/assets/WAN1310_T1_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-send-and-receive/assets/WAN1310_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T1_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T1_IMG01.png
index f5dccb3441..79016bf71e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T1_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T1_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T1_IMG02.png
index cd68e39edf..d960079840 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T1_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG01.png
index 51b3abbb9e..ef7348a988 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG04.png
index c2456e65b6..97252d7007 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG05.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG05.png
index ae4052483b..b5a3371b29 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG05.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-sensor-data/assets/WAN1310_T2_IMG05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/blob_KruXU85KZx.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/blob_KruXU85KZx.png
index 8ec08bf321..08f8aba13e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/blob_KruXU85KZx.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/blob_KruXU85KZx.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_0lOoGz0swp.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_0lOoGz0swp.png
index 53fa5508fa..8572d19809 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_0lOoGz0swp.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_0lOoGz0swp.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_5kT73S0TjF.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_5kT73S0TjF.png
index ebd36bbd74..db9dccf5e2 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_5kT73S0TjF.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_5kT73S0TjF.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_DZAnJ84XLG.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_DZAnJ84XLG.png
index a4192e086c..2220dff1db 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_DZAnJ84XLG.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_DZAnJ84XLG.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_IqO0htpcFd.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_IqO0htpcFd.png
index 81ddc61830..bc2de2a4ae 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_IqO0htpcFd.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_IqO0htpcFd.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_Ki2b09FyCA.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_Ki2b09FyCA.png
index b382e16298..61bd59c7fc 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_Ki2b09FyCA.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_Ki2b09FyCA.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_L5bGCpbKH5.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_L5bGCpbKH5.png
index d39bf91d98..285c9473f3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_L5bGCpbKH5.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_L5bGCpbKH5.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_NxkfFTg6D2.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_NxkfFTg6D2.png
index fa7e584a6f..11790bce01 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_NxkfFTg6D2.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_NxkfFTg6D2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_QobbKH26sL.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_QobbKH26sL.png
index b6b9a4fc98..4bb5f5dc52 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_QobbKH26sL.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_QobbKH26sL.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_Twcx3TeLuV.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_Twcx3TeLuV.png
index dc970deb47..ac3896bfd3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_Twcx3TeLuV.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_Twcx3TeLuV.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_e4MwLIpnLY.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_e4MwLIpnLY.png
index 2b863767a7..3d54f2ccb2 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_e4MwLIpnLY.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_e4MwLIpnLY.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_jGEHoLEC37.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_jGEHoLEC37.png
index 34eab766b9..a2068e42e8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_jGEHoLEC37.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_jGEHoLEC37.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_pEGLpdLrrN.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_pEGLpdLrrN.png
index 53d9c0502e..1d3d5af199 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_pEGLpdLrrN.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_pEGLpdLrrN.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_r098JE8c8n.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_r098JE8c8n.png
index e5e57cdcb7..159d321f47 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_r098JE8c8n.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_r098JE8c8n.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_sTn1UDRqR6.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_sTn1UDRqR6.png
index 2dd139a0b5..d6d9bbb36b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_sTn1UDRqR6.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_sTn1UDRqR6.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_swf913v9Z0.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_swf913v9Z0.png
index 3fa93c7570..8fae9e39c1 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_swf913v9Z0.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_swf913v9Z0.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_tbs6q4STD2.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_tbs6q4STD2.png
index 7c143022f0..5c2180ea30 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_tbs6q4STD2.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_tbs6q4STD2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_wsfr8dkwnR.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_wsfr8dkwnR.png
index 33328a101c..1bb61325c7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_wsfr8dkwnR.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_wsfr8dkwnR.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_yB7DgsoRlK.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_yB7DgsoRlK.png
index dc20500c5c..a5909049a2 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_yB7DgsoRlK.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/image_yB7DgsoRlK.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6417b76e505075f103.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6417b76e505075f103.png
index 6dbc5e2ac4..31db6f2950 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6417b76e505075f103.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6417b76e505075f103.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6420d7d4b00f1fdf22.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6420d7d4b00f1fdf22.png
index fa4be9158c..1b74bcd679 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6420d7d4b00f1fdf22.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6420d7d4b00f1fdf22.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64213902484365207c.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64213902484365207c.png
index ef50e6b4c9..5ea2646450 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64213902484365207c.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64213902484365207c.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6423733b13e5af5eee.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6423733b13e5af5eee.png
index 6b1e378c5e..4e18fa3e9f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6423733b13e5af5eee.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base6423733b13e5af5eee.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64be600cbd42855166.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64be600cbd42855166.png
index 830e12ae96..900820e01d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64be600cbd42855166.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64be600cbd42855166.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64c12b04b7536c1bea.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64c12b04b7536c1bea.png
index d0e3af6644..48aca1e8a0 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64c12b04b7536c1bea.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64c12b04b7536c1bea.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64d7cc03b9c121953f.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64d7cc03b9c121953f.png
index c01edf195f..1315f0dbf9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64d7cc03b9c121953f.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/png_base64d7cc03b9c121953f.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-03-11_16-13-31_f3NoezOSyz.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-03-11_16-13-31_f3NoezOSyz.png
index aa17970a6c..0e55af0b38 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-03-11_16-13-31_f3NoezOSyz.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-03-11_16-13-31_f3NoezOSyz.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_13-06-26_2_BFc2L1dPAk.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_13-06-26_2_BFc2L1dPAk.png
index 12de17a6dd..461858acc4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_13-06-26_2_BFc2L1dPAk.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_13-06-26_2_BFc2L1dPAk.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_13-06-43_VIadaZm4HV.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_13-06-43_VIadaZm4HV.png
index 3ee705a215..6283d79ec8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_13-06-43_VIadaZm4HV.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_13-06-43_VIadaZm4HV.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_16-55-07_1XeopaUVkG.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_16-55-07_1XeopaUVkG.png
index bbbddf21d5..f7fee1c4d8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_16-55-07_1XeopaUVkG.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_16-55-07_1XeopaUVkG.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_17-13-03_rnXWpyIP2c.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_17-13-03_rnXWpyIP2c.png
index 3364f266f8..88d5affffb 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_17-13-03_rnXWpyIP2c.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_17-13-03_rnXWpyIP2c.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_22-48-35_QFUcphj0pD.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_22-48-35_QFUcphj0pD.png
index 54f65ee971..057f8b107f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_22-48-35_QFUcphj0pD.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-15_22-48-35_QFUcphj0pD.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-16_17-54-41_fELtZEaTr2.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-16_17-54-41_fELtZEaTr2.png
index 2dad0016ee..e6f59dd730 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-16_17-54-41_fELtZEaTr2.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/screenshot_2019-04-16_17-54-41_fELtZEaTr2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/setup_hw_JBeVsDaYY4.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/setup_hw_JBeVsDaYY4.png
index 9ef9cc84a1..b02cda086e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/setup_hw_JBeVsDaYY4.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-farming-with-mkr-wan-1310/assets/setup_hw_JBeVsDaYY4.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/au-frequency-spectrum.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/au-frequency-spectrum.png
index 59e05b48d8..7f788f76c8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/au-frequency-spectrum.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/au-frequency-spectrum.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/mkr-wan-1310_t2_img01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/mkr-wan-1310_t2_img01.png
index 3bbc79d0a8..1d8c5b0957 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/mkr-wan-1310_t2_img01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/mkr-wan-1310_t2_img01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/mkr-wan-1310_t2_img02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/mkr-wan-1310_t2_img02.png
index d25259c38e..77556d534c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/mkr-wan-1310_t2_img02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lorawan-regional-parameters/assets/mkr-wan-1310_t2_img02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/mkr-wan-library-examples/assets/mkrwan-circuit.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/mkr-wan-library-examples/assets/mkrwan-circuit.png
index 9a6e51755a..924f6f2cf1 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/mkr-wan-library-examples/assets/mkrwan-circuit.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/mkr-wan-library-examples/assets/mkrwan-circuit.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG00.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG00.png
index afeaf34df2..d8a21f7ef5 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG00.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG00.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG01.png
index 84a65619eb..216a2668ec 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG02.png
index 38edc6dd2f..496f65478d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG04.png
index fdf258e3dd..3fabd9964f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG05.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG05.png
index d60b929e3f..76855c03e8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG05.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG06.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG06.png
index 9f9856d4e9..42790e1621 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG06.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG06_02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG06_02.png
index 00e49fd178..421fa8a6cb 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG06_02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG06_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG07.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG07.png
index 8c941d2e27..eff58a26e4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG07.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG07.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG08.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG08.png
index e997f376f2..7a781d97ed 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG08.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG08.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG09.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG09.png
index d7951ad1c9..870699838f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG09.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG09.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG10.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG10.png
index ab5ca11efc..779db97dd7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG10.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG10.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG12.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG12.png
index b3067731a8..d25215e638 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG12.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG12.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG13.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG13.png
index d382ce7a3c..6efbc7d592 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG13.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/the-things-network/assets/WAN1310_T6_IMG13.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG01.png
index 7694614eb8..fb757cb52e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG02.png
index e30b8df627..eafe5d380e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG03.png
index 0bf55821f4..ffafe3fa5c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/wan-and-gps/assets/WAN1310_T5_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifi1010_powertree.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifi1010_powertree.png
index 2d27dbf6d1..d1207c3c00 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifi1010_powertree.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifi1010_powertree.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_connectorPositions.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_connectorPositions.png
index 4aadc4fe13..e1e1633fdc 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_connectorPositions.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_connectorPositions.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_mountingHoles.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_mountingHoles.png
index e7864fbe0e..0d14ff6d20 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_mountingHoles.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_mountingHoles.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_outline.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_outline.png
index cdf6069ce4..8c7af79728 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_outline.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/datasheet/assets/mkrwifif1010_outline.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/image.svg b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/image.svg
index 2d40de8de0..aac1707471 100644
--- a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/image.svg
@@ -1,1225 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/interactive/ABX00023-pinout.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/interactive/ABX00023-pinout.png
index 1062418055..bab32ee9fb 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/interactive/ABX00023-pinout.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/interactive/ABX00023-pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img01.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img01.png
index 4a099ed236..4f8c727f7c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img01.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img02.png
index 09fc94c9d7..842834aa34 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img03.png
index 40b24521d7..f1c7ef25e7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img04.png
index 461d2eca84..0d9fa71db3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img05.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img05.png
index 6db7795667..b151e40f0c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img05.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img06.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img06.png
index 548badfc4c..01824b02d1 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img06.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img07.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img07.png
index 46965b52c1..2c715d81eb 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img07.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img07.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img08.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img08.png
index 1270065cf0..08869230bf 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img08.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img08.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img09.gif b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img09.gif
index d358ce7836..b0c9c765b0 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img09.gif and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img09.gif differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img10.gif b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img10.gif
index d14b1db779..4bf051e36f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img10.gif and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img10.gif differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img11.gif b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img11.gif
index f4311e2fff..329fed12ae 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img11.gif and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img11.gif differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img12.gif b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img12.gif
index 6f92e3074a..8ea0cd8916 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img12.gif and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img12.gif differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img13.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img13.png
index 4768802565..03e479181f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img13.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img13.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img14.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img14.png
index 2e15f1f842..803408c694 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img14.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/assets/ide_v2_t1_img14.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG01.png
index c52f65e808..f9a97f6bd1 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG02.png
index d368c463e6..0e26416343 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG03.png
index 817dffc61a..92fef4d571 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG04.png
index 8fc31234e9..f482b2e3fb 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/built-in-rgb/assets/MKR_1010_T12_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_01.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_01.png
index 8743b2de6f..e2d17dce72 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_01.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_02.png
index 37ada5b68f..b82e1b3cb9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_03.png
index 9f657117e9..ebe564cb3b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_04.png
index aaa3ba0d43..9501a05ba9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_05.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_05.png
index e3cdc1bc86..e9f312092d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_05.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_06.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_06.png
index ab7e4dcc24..0765569c77 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_06.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_07.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_07.png
index 7667c7eee0..3e29b86063 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_07.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-sensors/assets/mkr_tutorial_06_img_07.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_01_rev2.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_01_rev2.png
index f62a9463bc..b41fac437a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_01_rev2.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_01_rev2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_02.png
index 9c309429bf..5ac981ad86 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_03.png
index cad22ef4ea..7f241ff6ea 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_04.png
index 12a75015c4..577422d34c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_05.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_05.png
index 80c292e32a..daef0f76f7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_05.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_06.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_06.png
index a859562691..cb1801ec1b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_06.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_07.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_07.png
index 741d8145ff..2cd1e2b604 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_07.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/connecting-to-wifi-network/assets/mkr_tutorial_02_img_07.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_03_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_03_img_02.png
index 834517af11..4c296094c3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_03_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_03_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_01.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_01.png
index 5d0d86690d..547eb07180 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_01.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_02_rev2.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_02_rev2.png
index 92fd9cbcfb..39977a3fa4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_02_rev2.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_02_rev2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_04.png
index e45987ed5b..0e573e5bc8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_05.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_05.png
index 03d3f751b5..99207a76cd 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_05.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/enabling-ble/assets/mkr_tutorial_05_img_05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_01_rev2.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_01_rev2.png
index 7d239db3f9..a10aa29559 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_01_rev2.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_01_rev2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_02.png
index 834517af11..4c296094c3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_03.png
index d337459d28..3b3f55d197 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_04.png
index 36cd08a5c8..af79c14c2c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/hosting-a-webserver/assets/mkr_tutorial_03_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/battery-in-mkr.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/battery-in-mkr.png
index f10cfd45e6..5727c02665 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/battery-in-mkr.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/battery-in-mkr.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/calculation-serial-printing.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/calculation-serial-printing.png
index 4901347e92..11cf663bb6 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/calculation-serial-printing.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/calculation-serial-printing.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/configuration-code.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/configuration-code.png
index f8d682919e..346f11e183 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/configuration-code.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/configuration-code.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/include-BQ24195-library.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/include-BQ24195-library.png
index 316f4e947d..d138eddd82 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/include-BQ24195-library.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/include-BQ24195-library.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-battery-breakdown.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-battery-breakdown.png
index 9aa0cc43c2..fe1487fe71 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-battery-breakdown.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-battery-breakdown.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-battery-multimeter.jpg b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-battery-multimeter.jpg
index e4403c2b11..6fcad23357 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-battery-multimeter.jpg and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-battery-multimeter.jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-vcc-multimeter.jpg b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-vcc-multimeter.jpg
index b833ab223f..02dce66b0a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-vcc-multimeter.jpg and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/lipo-vcc-multimeter.jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/maxCurrentDraw.svg b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/maxCurrentDraw.svg
index 690af88f69..96a7b19fb8 100644
--- a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/maxCurrentDraw.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/maxCurrentDraw.svg
@@ -1,52 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/serial-BQ24195-setup.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/serial-BQ24195-setup.png
index 6edc77a684..c0cb79b27a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/serial-BQ24195-setup.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/serial-BQ24195-setup.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/three-lipo-batteries.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/three-lipo-batteries.png
index ea152cf478..d002a1a066 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/three-lipo-batteries.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/three-lipo-batteries.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/voltage-divider-samd21.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/voltage-divider-samd21.png
index a5fc29f635..578f282f0c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/voltage-divider-samd21.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/voltage-divider-samd21.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/vout.svg b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/vout.svg
index eb539d22b1..7aa5b5d5a2 100644
--- a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/vout.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-battery-app-note/assets/vout.svg
@@ -1,23 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_board_select.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_board_select.png
index 6db7795667..b151e40f0c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_board_select.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_board_select.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_debugging_button.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_debugging_button.png
index 1270065cf0..08869230bf 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_debugging_button.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_debugging_button.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_debugging_window.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_debugging_window.png
index 75dd5e1997..f2fca6ac75 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_debugging_window.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_IDE_debugging_window.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_connection_illustration.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_connection_illustration.png
index 8110148762..a6b3d568cb 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_connection_illustration.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_connection_illustration.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_shield_connection_first.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_shield_connection_first.png
index 4768802565..03e479181f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_shield_connection_first.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_shield_connection_first.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_shield_connection_second.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_shield_connection_second.png
index 2e15f1f842..803408c694 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_shield_connection_second.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_shield_connection_second.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_soldered_illustration.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_soldered_illustration.png
index 58454d4dc4..992642417f 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_soldered_illustration.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mkr-jlink-setup/assets/mkr_jlink_soldered_illustration.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_01.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_01.png
index aa1f9501f9..d198ea9f76 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_01.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_02.png
index 6e2963bf27..17a044e821 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_03.png
index f3d228be05..22e386455d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_04.png
index 172ce1bf7a..0866e84caf 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_05.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_05.png
index e5aca2a886..7af2f846a8 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_05.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_06.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_06.png
index 538042ef74..1eb8f77ca7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_06.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_07.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_07.png
index 0ab3da98fa..4c95657970 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_07.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_07.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_08.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_08.png
index e0581434e5..41af57572b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_08.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/mqtt-device-to-device/assets/mkr_tutorial_11_img_08.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_01.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_01.png
index 11f740f2ee..b817a5b55b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_01.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_02.png
index 7622f5159d..255ef6f1fe 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_03.png
index 898922f149..147fa07dd9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_04.png
index 8e4c20fa5e..15578ed3a5 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_05.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_05.png
index eff83d31b2..69bce30193 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_05.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/oled-display/assets/mkr_tutorial_08_img_05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_01_rev2.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_01_rev2.png
index 6619790041..92c911a539 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_01_rev2.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_01_rev2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_02.png
index 1c1b3dd672..3b1ea3a35a 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_03.png
index 34bfa59e52..c6a023c1bc 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_04.png
index ca36aaa00d..64e417c602 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_05.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_05.png
index b5b669d8d3..c287333a22 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_05.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/powering-with-batteries/assets/mkr_tutorial_01_img_05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_01.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_01.png
index 55efe3e2fa..6ce45ac491 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_01.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_02.png
index 7622f5159d..255ef6f1fe 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_03.png
index bde92d7a14..86d77b2da7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/rtc-clock/assets/mkr_tutorial_10_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_01.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_01.png
index 676953e495..a9ef0c0f1b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_01.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_02.png
index a9769d83f7..10daf33bc3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_04.png
index d708ff2ed4..d1a341cc4e 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/scan-networks/assets/mkr_tutorial_09_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_1_41_18_pm_EoZYdjsucJ.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_1_41_18_pm_EoZYdjsucJ.png
index 3b0b0496d8..6394139224 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_1_41_18_pm_EoZYdjsucJ.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_1_41_18_pm_EoZYdjsucJ.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_07_54_pm_mEiPK5lvDW.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_07_54_pm_mEiPK5lvDW.png
index e2ae2a68ba..45fee0fd35 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_07_54_pm_mEiPK5lvDW.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_07_54_pm_mEiPK5lvDW.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_30_16_pm_Ljc1LdEu31.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_30_16_pm_Ljc1LdEu31.png
index c1fe8cf1ef..0ce64b9b93 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_30_16_pm_Ljc1LdEu31.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_30_16_pm_Ljc1LdEu31.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_50_16_pm_xAzjVRCCRD.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_50_16_pm_xAzjVRCCRD.png
index 1cb20667f5..19728f3707 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_50_16_pm_xAzjVRCCRD.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_50_16_pm_xAzjVRCCRD.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_51_28_pm_Y5guQASQMf.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_51_28_pm_Y5guQASQMf.png
index 744120c2fd..394e3354bd 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_51_28_pm_Y5guQASQMf.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_51_28_pm_Y5guQASQMf.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_53_09_pm_PisdnaTMMR.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_53_09_pm_PisdnaTMMR.png
index 275c0434cd..8613b692e9 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_53_09_pm_PisdnaTMMR.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_2_53_09_pm_PisdnaTMMR.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_10_37_pm_sEq0UJFTMc.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_10_37_pm_sEq0UJFTMc.png
index e971501a71..cd6149f5b4 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_10_37_pm_sEq0UJFTMc.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_10_37_pm_sEq0UJFTMc.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_12_56_pm_xDDejI3x4d.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_12_56_pm_xDDejI3x4d.png
index b079bfff7b..bae7a5f0fe 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_12_56_pm_xDDejI3x4d.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_12_56_pm_xDDejI3x4d.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_21_02_pm_QRdKEAvJHy.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_21_02_pm_QRdKEAvJHy.png
index 92167a3a0c..73b222aab2 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_21_02_pm_QRdKEAvJHy.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_21_02_pm_QRdKEAvJHy.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_22_59_pm_PDPhgTSD0Q.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_22_59_pm_PDPhgTSD0Q.png
index 2b013e73d5..c04f760483 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_22_59_pm_PDPhgTSD0Q.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_22_59_pm_PDPhgTSD0Q.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_25_34_pm_C67jg7LTXy.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_25_34_pm_C67jg7LTXy.png
index 588e17315b..8eb8676568 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_25_34_pm_C67jg7LTXy.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_25_34_pm_C67jg7LTXy.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_26_58_pm_bkfMovt51e.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_26_58_pm_bkfMovt51e.png
index 9e750b1847..f8640d9f12 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_26_58_pm_bkfMovt51e.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_26_58_pm_bkfMovt51e.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_30_09_pm_keZAmqjUXd.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_30_09_pm_keZAmqjUXd.png
index 1e1b19e9d8..0b1ec5070b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_30_09_pm_keZAmqjUXd.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_30_09_pm_keZAmqjUXd.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_31_57_pm_ETVc1YDwd3.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_31_57_pm_ETVc1YDwd3.png
index 4c72fd6e9a..ebeeb4f95b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_31_57_pm_ETVc1YDwd3.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_3_31_57_pm_ETVc1YDwd3.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_48_29_pm_cDp4LJycDQ.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_48_29_pm_cDp4LJycDQ.png
index 626baf9a83..4cf7ecbbd1 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_48_29_pm_cDp4LJycDQ.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_48_29_pm_cDp4LJycDQ.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_50_49_pm_IL9ZErumxQ.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_50_49_pm_IL9ZErumxQ.png
index d2bf39b4cc..417ac07f88 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_50_49_pm_IL9ZErumxQ.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_50_49_pm_IL9ZErumxQ.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_53_47_pm_LKDzWUW8VV.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_53_47_pm_LKDzWUW8VV.png
index a17f73a7e0..0af3f49b6d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_53_47_pm_LKDzWUW8VV.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_53_47_pm_LKDzWUW8VV.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_53_52_pm_7ncySbgoAN.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_53_52_pm_7ncySbgoAN.png
index d722385aa9..6018696005 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_53_52_pm_7ncySbgoAN.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/assets/screen_shot_2019-01-14_at_5_53_52_pm_7ncySbgoAN.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_01_rev2.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_01_rev2.png
index 744714b2ce..4ec54baae3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_01_rev2.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_01_rev2.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_02.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_02.png
index 834517af11..4c296094c3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_02.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_03.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_03.png
index efc0aa413c..71ae5f7a2b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_03.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_04.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_04.png
index 4a74364121..8d31d0be2d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_04.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_05.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_05.png
index 7dcfea478e..1771f7c4d3 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_05.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_06.png b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_06.png
index 322724a07b..d0f1d74d47 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_06.png and b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/web-server-ap-mode/assets/mkr_tutorial_04_img_06.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/image.svg b/content/hardware/01.mkr/01.boards/mkr-zero/image.svg
index 689fda0020..d7ae75c966 100644
--- a/content/hardware/01.mkr/01.boards/mkr-zero/image.svg
+++ b/content/hardware/01.mkr/01.boards/mkr-zero/image.svg
@@ -1,1019 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/interactive/ABX00012-pinout.png b/content/hardware/01.mkr/01.boards/mkr-zero/interactive/ABX00012-pinout.png
index e278dcd85f..547ffe8b98 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/interactive/ABX00012-pinout.png and b/content/hardware/01.mkr/01.boards/mkr-zero/interactive/ABX00012-pinout.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG01.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG01.png
index 1e54504420..7fae50dd15 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG01.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG02.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG02.png
index 4508c79448..99ede3e5ae 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG02.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG03.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG03.png
index c402644259..4fc6ec8467 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG03.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG04.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG04.png
index 3a7b3760a4..a201b7a10d 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG04.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG05.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG05.png
index 478632fc5b..8b94205cab 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG05.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-data-logger/assets/MKRZERO_T1_IMG05.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-alarm/assets/MKRZERO_T3_IMG_01.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-alarm/assets/MKRZERO_T3_IMG_01.png
index 087ff158af..2ed84aa907 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-alarm/assets/MKRZERO_T3_IMG_01.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-alarm/assets/MKRZERO_T3_IMG_01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-alarm/assets/MKRZERO_T3_IMG_02.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-alarm/assets/MKRZERO_T3_IMG_02.png
index fd72557a2b..d432d0cb0c 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-alarm/assets/MKRZERO_T3_IMG_02.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-alarm/assets/MKRZERO_T3_IMG_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_01.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_01.png
index dbd890fb73..eff97a3651 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_01.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_01.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_02.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_02.png
index e3456be9e7..4d67da74fb 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_02.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_02.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_03.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_03.png
index bde92d7a14..86d77b2da7 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_03.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-rtc-clock/assets/MKRZERO_T2_IMG_03.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/MKRZERO.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/MKRZERO.png
index 700a2206f5..57bd7f304b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/MKRZERO.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/MKRZERO.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/MKRZERO_WeatherDatalogger_serialPort.png b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/MKRZERO_WeatherDatalogger_serialPort.png
index 773dde84f1..64a5521b5b 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/MKRZERO_WeatherDatalogger_serialPort.png and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/MKRZERO_WeatherDatalogger_serialPort.png differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(10_of_10).jpg b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(10_of_10).jpg
index ca3ec50777..a7150cc313 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(10_of_10).jpg and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(10_of_10).jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(4_of_10).jpg b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(4_of_10).jpg
index b7e9ebd8f1..08fe852991 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(4_of_10).jpg and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(4_of_10).jpg differ
diff --git a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(6_of_10)%20-%20Copy.jpg b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(6_of_10)%20-%20Copy.jpg
index 8910440091..9e254783fc 100644
Binary files a/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(6_of_10)%20-%20Copy.jpg and b/content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-weather-data-logger/assets/Weather_Data_Logger_(6_of_10)%20-%20Copy.jpg differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-485-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-485-shield/image.svg
index 2a8c799067..af291191d1 100644
--- a/content/hardware/01.mkr/02.shields/mkr-485-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-485-shield/image.svg
@@ -1,682 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-485-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-485-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-485-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-485-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG00.png b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG00.png
index baf4d9c9f2..220bbbffcc 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG00.png and b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG00.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG01.png
index 5bff7600c9..d22b60df04 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG02.png
index fcca5c07de..d4b3adac13 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG03.png b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG03.png
index eb1891e059..01697cba64 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG03.png and b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG04.png b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG04.png
index 7312c42e46..ad6d038152 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG04.png and b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG05.png b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG05.png
index 039e15b2c8..5b0ca48a4a 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG05.png and b/content/hardware/01.mkr/02.shields/mkr-485-shield/tutorials/mkr-485-communication/assets/MKR485_T1_IMG05.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/MKR ENV Shield_top.svg b/content/hardware/01.mkr/02.shields/mkr-can-shield/MKR ENV Shield_top.svg
index f3bd51530e..8139e1a95c 100644
--- a/content/hardware/01.mkr/02.shields/mkr-can-shield/MKR ENV Shield_top.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-can-shield/MKR ENV Shield_top.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-can-shield/image.svg
index d0d2769f71..1670451394 100644
--- a/content/hardware/01.mkr/02.shields/mkr-can-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-can-shield/image.svg
@@ -1,687 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-can-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-can-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-can-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG01.png
index 42243fae65..734ccabfa2 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG02.png
index 4de84b58b1..c564665c9b 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG03.png b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG03.png
index 57f6cda892..52dc85ce94 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG03.png and b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG04.png b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG04.png
index 923af0400c..671bd22304 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG04.png and b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG05.png b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG05.png
index 2c29b661e2..8282f32a33 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG05.png and b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG05.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG06.png b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG06.png
index 1c75ad8cd7..9d6128eb18 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG06.png and b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG06.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG07.png b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG07.png
index 0544bdd8e2..1d356f7c06 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG07.png and b/content/hardware/01.mkr/02.shields/mkr-can-shield/tutorials/mkr-can-communication/assets/MKRCAN_T1_IMG07.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-env-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-env-shield/image.svg
index a346fdfcb5..93d204a8f4 100644
--- a/content/hardware/01.mkr/02.shields/mkr-env-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-env-shield/image.svg
@@ -1,300 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-env-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-env-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-env-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-env-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG01.png
index 1eebc4f063..a64c4fd88b 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG02.png
index 9f8888a0bb..6eeaf01589 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG03.png b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG03.png
index ac7e89b7f5..d43129fb5a 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG03.png and b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG04.png b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG04.png
index 6acc22ef27..6ada829e79 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG04.png and b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG05.png b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG05.png
index 0d4d13b0d2..ded3f66cdd 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG05.png and b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG05.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG06.png b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG06.png
index ed64556a73..fde4ce5308 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG06.png and b/content/hardware/01.mkr/02.shields/mkr-env-shield/tutorials/mkr-env-shield-basic/assets/MKRENV_T1_IMG06.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-eth-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-eth-shield/image.svg
index 048a8e75ca..81d8feb912 100644
--- a/content/hardware/01.mkr/02.shields/mkr-eth-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-eth-shield/image.svg
@@ -1,1264 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-eth-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-eth-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-eth-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-eth-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG01.png
index d0d2c8b9a8..2ad9f2c946 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG02.png
index 88915d35d7..964f1ccfa0 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG03.png b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG03.png
index b0f4183add..d0ba7f8242 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG03.png and b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG04.png b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG04.png
index 5860cce92c..adfc3f7abc 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG04.png and b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG05.png b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG05.png
index 2f686d5b37..fcd709b7c3 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG05.png and b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG05.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG06.png b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG06.png
index dfa179734f..5a26e1c84b 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG06.png and b/content/hardware/01.mkr/02.shields/mkr-eth-shield/tutorials/mkr-eth-shield-webserver/assets/MKRETH_T1_IMG06.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-gps-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-gps-shield/image.svg
index 6c4408e68b..4c89bf6a94 100644
--- a/content/hardware/01.mkr/02.shields/mkr-gps-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-gps-shield/image.svg
@@ -1,441 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-gps-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-gps-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-gps-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-gps-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-gps-shield/tutorials/mkr-gps-basic/assets/MKRGPS_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-gps-shield/tutorials/mkr-gps-basic/assets/MKRGPS_T1_IMG01.png
index fb48b8e549..8e7df9df47 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-gps-shield/tutorials/mkr-gps-basic/assets/MKRGPS_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-gps-shield/tutorials/mkr-gps-basic/assets/MKRGPS_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-gps-shield/tutorials/mkr-gps-basic/assets/MKRGPS_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-gps-shield/tutorials/mkr-gps-basic/assets/MKRGPS_T1_IMG02.png
index cfd7a19b29..58cd9d3741 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-gps-shield/tutorials/mkr-gps-basic/assets/MKRGPS_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-gps-shield/tutorials/mkr-gps-basic/assets/MKRGPS_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-imu-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-imu-shield/image.svg
index 348eab2179..4a866d85c1 100644
--- a/content/hardware/01.mkr/02.shields/mkr-imu-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-imu-shield/image.svg
@@ -1,628 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-imu-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-imu-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-imu-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-imu-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG01.png
index 5c4c6e1172..a223f952d4 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG02.png
index 5de2cc9e82..1a95e5d930 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG03.png b/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG03.png
index bda9660b72..4dfcc1074b 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG03.png and b/content/hardware/01.mkr/02.shields/mkr-imu-shield/tutorials/mkr-imu-shield-basics/assets/MKR_IMU_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-mem-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-mem-shield/image.svg
index d2d7f5f3f6..8569e4bdcc 100644
--- a/content/hardware/01.mkr/02.shields/mkr-mem-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-mem-shield/image.svg
@@ -1,1447 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-mem-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-mem-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-mem-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-mem-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG01.png
index f71a401a11..dd45753379 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG02.png
index 4508c79448..99ede3e5ae 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG03.png b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG03.png
index af829c0abd..9ef24e6610 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG03.png and b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG04.png b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG04.png
index b5aa995e8a..4d269f57f2 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG04.png and b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG05.png b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG05.png
index 3a7b3760a4..a201b7a10d 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG05.png and b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG05.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG06.png b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG06.png
index 478632fc5b..8b94205cab 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG06.png and b/content/hardware/01.mkr/02.shields/mkr-mem-shield/tutorials/mkr-mem-shield/mkr-mem-shield-data-logger/assets/MKRMEM_T1_IMG06.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-relay-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-relay-shield/image.svg
index 2fbd4c6419..20664b23a5 100644
--- a/content/hardware/01.mkr/02.shields/mkr-relay-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-relay-shield/image.svg
@@ -1,1418 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-relay-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-relay-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-relay-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-relay-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG01.png
index 9b36b664fd..7631ddce72 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG02.png
index 12045c2854..5e9a830654 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG06.png b/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG06.png
index 2f8c009acf..35cc6d6907 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG06.png and b/content/hardware/01.mkr/02.shields/mkr-relay-shield/tutorials/mkr-relay-shield-basic/assets/MKRRELAY_T1_IMG06.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/image.svg
index 923f698a43..ca4f9f4621 100644
--- a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/image.svg
@@ -1,3024 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fade/assets/MKRRGB_T2_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fade/assets/MKRRGB_T2_IMG01.png
index 184b7f1257..8917538a86 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fade/assets/MKRRGB_T2_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fade/assets/MKRRGB_T2_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fade/assets/MKRRGB_T2_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fade/assets/MKRRGB_T2_IMG02.png
index 79010a60e5..1a1e6a8f26 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fade/assets/MKRRGB_T2_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fade/assets/MKRRGB_T2_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fill-stroke/assets/MKRRGB_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fill-stroke/assets/MKRRGB_T1_IMG01.png
index 5936f034f9..048447ae0b 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fill-stroke/assets/MKRRGB_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fill-stroke/assets/MKRRGB_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fill-stroke/assets/MKRRGB_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fill-stroke/assets/MKRRGB_T1_IMG02.png
index 7db809ad4c..bfbe873a1a 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fill-stroke/assets/MKRRGB_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-rgb-shield/tutorials/mkr-rgb-fill-stroke/assets/MKRRGB_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/image.svg
index 26fa4b0ba4..b363893b28 100644
--- a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/image.svg
@@ -1,837 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG01.png
index c57ff42958..239efb7d20 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG02.png
index 4508c79448..99ede3e5ae 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG03.png b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG03.png
index b01f83aa1b..91e53bbacb 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG03.png and b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG04.png b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG04.png
index 0ff6fb5c65..393419c999 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG04.png and b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG05.png b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG05.png
index 3a7b3760a4..a201b7a10d 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG05.png and b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG05.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG06.png b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG06.png
index 478632fc5b..8b94205cab 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG06.png and b/content/hardware/01.mkr/02.shields/mkr-sd-proto-shield/tutorials/mkr-sd-proto-shield-data-logger/assets/MKRSD_T1_IMG06.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-therm-shield/image.svg b/content/hardware/01.mkr/02.shields/mkr-therm-shield/image.svg
index 8c6a959ba1..b5b68ef58a 100644
--- a/content/hardware/01.mkr/02.shields/mkr-therm-shield/image.svg
+++ b/content/hardware/01.mkr/02.shields/mkr-therm-shield/image.svg
@@ -1,285 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/02.shields/mkr-therm-shield/interactive/pinout.png b/content/hardware/01.mkr/02.shields/mkr-therm-shield/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-therm-shield/interactive/pinout.png and b/content/hardware/01.mkr/02.shields/mkr-therm-shield/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG01.png b/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG01.png
index 810c4e1f35..c4d0322c68 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG01.png and b/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG02.png b/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG02.png
index 3274aca921..6fb17cc99e 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG02.png and b/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG03.png b/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG03.png
index d6d8b64fa8..6746898f6a 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG03.png and b/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/MKR_THERM_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/highlighted_therm.png b/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/highlighted_therm.png
index 51835a2403..8e1bf7fc11 100644
Binary files a/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/highlighted_therm.png and b/content/hardware/01.mkr/02.shields/mkr-therm-shield/tutorials/mkr-therm-shield-basic/assets/highlighted_therm.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/image.svg b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/image.svg
index 9c14884fc6..3994bcc838 100644
--- a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/image.svg
+++ b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/image.svg
@@ -1,847 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-basics/assets/MKRConnectorCarrier.jpg b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-basics/assets/MKRConnectorCarrier.jpg
index 93f7fb4ddd..8a0b8d3dd9 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-basics/assets/MKRConnectorCarrier.jpg and b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-basics/assets/MKRConnectorCarrier.jpg differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-basics/assets/MKRConnectorCarrier_BottomFix.jpg b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-basics/assets/MKRConnectorCarrier_BottomFix.jpg
index 65982c9a9f..df95b59d34 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-basics/assets/MKRConnectorCarrier_BottomFix.jpg and b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-basics/assets/MKRConnectorCarrier_BottomFix.jpg differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-dht-to-oled/assets/Grove_DHT_OLED.jpg b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-dht-to-oled/assets/Grove_DHT_OLED.jpg
index 4ebc2e1745..58ecf641ec 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-dht-to-oled/assets/Grove_DHT_OLED.jpg and b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-dht-to-oled/assets/Grove_DHT_OLED.jpg differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-dht-to-oled/assets/MKRConnectorCarrier.jpg b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-dht-to-oled/assets/MKRConnectorCarrier.jpg
index 93f7fb4ddd..8a0b8d3dd9 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-dht-to-oled/assets/MKRConnectorCarrier.jpg and b/content/hardware/01.mkr/03.carriers/mkr-connector-carrier/tutorials/connector-dht-to-oled/assets/MKRConnectorCarrier.jpg differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/Pinout.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/Pinout.png
index 5f1b7d99d3..bd8ac587df 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/Pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/Pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/bottom_view.svg b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/bottom_view.svg
index 05af95469d..8bcfc84668 100644
--- a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/bottom_view.svg
+++ b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/bottom_view.svg
@@ -1,404 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/connectors.svg b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/connectors.svg
index 2f08ea6e67..e637a0be5c 100644
--- a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/connectors.svg
+++ b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/connectors.svg
@@ -1,6544 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/featured.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/featured.png
index 06c901695c..6a392f47a7 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/featured.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/featured.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/mechanical.svg b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/mechanical.svg
index 0d9431ad2b..aeb19edb13 100644
--- a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/mechanical.svg
+++ b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/mechanical.svg
@@ -1,309 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/mechanical_left.svg b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/mechanical_left.svg
index 7c9090f444..fb32bf0528 100644
--- a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/mechanical_left.svg
+++ b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/mechanical_left.svg
@@ -1,845 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/top_view.svg b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/top_view.svg
index 4633de9fda..2410ad1639 100644
--- a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/top_view.svg
+++ b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/datasheet/assets/top_view.svg
@@ -1,636 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/downloads/ABX00073-pinout.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/downloads/ABX00073-pinout.png
index 5f1b7d99d3..bd8ac587df 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/downloads/ABX00073-pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/downloads/ABX00073-pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/image.svg b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/image.svg
index dd5b159ec0..5d21d10e99 100644
--- a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/image.svg
+++ b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/image.svg
@@ -1,588 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/interactive/ABX00073-pinout.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/interactive/ABX00073-pinout.png
index 5f1b7d99d3..bd8ac587df 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/interactive/ABX00073-pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/interactive/ABX00073-pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/interactive/pinout.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/interactive/pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/apds-9960.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/apds-9960.png
index 2fa388f90e..8906073353 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/apds-9960.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/apds-9960.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/battery-connector.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/battery-connector.png
index 578f300b2f..aaf7759e6e 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/battery-connector.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/battery-connector.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/bme-688.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/bme-688.png
index c6e1fa9d05..a91dc8d069 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/bme-688.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/bme-688.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/buttons.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/buttons.png
index e443cc86b0..1b34c83638 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/buttons.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/buttons.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/buzzer.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/buzzer.png
index d65aebef87..f2cb021277 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/buzzer.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/buzzer.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/display.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/display.png
index 528ad8a80c..d332d49449 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/display.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/display.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/grove-connector.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/grove-connector.png
index 23e3d77da7..d89b45c386 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/grove-connector.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/grove-connector.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/hero.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/hero.png
index 9a21757385..1abb9722af 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/hero.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/hero.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkr-mount.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkr-mount.png
index b96a540ee9..eca82392e3 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkr-mount.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkr-mount.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkrIoTCarrier-pinout.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkrIoTCarrier-pinout.png
index 44dec571f9..cd661e5952 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkrIoTCarrier-pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkrIoTCarrier-pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkrIotCarrier-leds.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkrIotCarrier-leds.png
index f3b3a71205..55d84e2bc9 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkrIotCarrier-leds.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/mkrIotCarrier-leds.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/relay-lights.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/relay-lights.png
index 738c3de8cd..ebeed630b1 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/relay-lights.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/relay-lights.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/relay-specs.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/relay-specs.png
index 1e46a8cc38..bd9c4af825 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/relay-specs.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier-rev2/tutorials/cheat-sheet/assets/relay-specs.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/Pinout.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/Pinout.png
index 6bbb8a9f94..333ee6aa92 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/Pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/Pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/Power_Tree_MKR_IoT_Carrier.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/Power_Tree_MKR_IoT_Carrier.png
index bf27bec100..eb49c1ee0a 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/Power_Tree_MKR_IoT_Carrier.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/Power_Tree_MKR_IoT_Carrier.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/bottom_view.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/bottom_view.png
index ad29aa56eb..c6d6ae41f0 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/bottom_view.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/bottom_view.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/featured.jpg b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/featured.jpg
index 8b811e29fb..699857ab6b 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/featured.jpg and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/featured.jpg differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/front_view.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/front_view.png
index e51ee9fa0c..dc1d88df15 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/front_view.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/front_view.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/mechanical.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/mechanical.png
index 30f3898fcb..dedb86506c 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/mechanical.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/mechanical.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/solution_overview.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/solution_overview.png
index e2b94818c6..962a926355 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/solution_overview.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/datasheet/assets/solution_overview.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/image.svg b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/image.svg
index 2fe45793fe..8fc2038eeb 100644
--- a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/image.svg
+++ b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/image.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/interactive/ABX00047-pinout.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/interactive/ABX00047-pinout.png
index 44dec571f9..cd661e5952 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/interactive/ABX00047-pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/interactive/ABX00047-pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/interactive/pinout.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/interactive/pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIoTCarrier-pinout.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIoTCarrier-pinout.png
index 44dec571f9..cd661e5952 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIoTCarrier-pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIoTCarrier-pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-buttons.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-buttons.png
index 6323e9f4f0..0411917eea 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-buttons.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-buttons.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-display.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-display.png
index f90f18dc5b..f292bd587f 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-display.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-display.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-leds.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-leds.png
index f3b3a71205..55d84e2bc9 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-leds.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-leds.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-mounting-board.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-mounting-board.png
index 174bac89f1..7f42e96eba 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-mounting-board.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-mounting-board.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-overview.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-overview.png
index 3334c8df24..ab59cf59f0 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-overview.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-overview.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-01.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-01.png
index c03043a7c5..95e4b00f77 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-01.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-01.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-02.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-02.png
index 0f6e4f0593..8f0e1201b3 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-02.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-02.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-lights.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-lights.png
index 468e2f1ab6..c2d4d16d89 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-lights.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-relays-lights.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-imu.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-imu.png
index 5a066c962b..63f03a323b 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-imu.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-imu.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-pressure.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-pressure.png
index c3198a07bf..d20a72e3e4 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-pressure.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-pressure.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-rgb.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-rgb.png
index e727c69e6b..ad60e0ce32 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-rgb.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-rgb.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-temp&humi.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-temp&humi.png
index 0bc6d8907e..eef49db44b 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-temp&humi.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkrIotCarrier-sensor-temp&humi.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-battery.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-battery.png
index b83a96ec8d..ea46707ba4 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-battery.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-battery.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-buzzer.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-buzzer.png
index 55eb207e01..0fffbc135c 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-buzzer.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-buzzer.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-grove-connectors.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-grove-connectors.png
index bfe08df361..5ecd042140 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-grove-connectors.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/assets/mkriotcarrier-grove-connectors.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/circuit.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/circuit.png
index 091152eac0..ee0f6b8ab3 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/circuit.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/circuit.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/cloud-dashboard.gif b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/cloud-dashboard.gif
index 117e2a35e6..b5fcb7b1d5 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/cloud-dashboard.gif and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/cloud-dashboard.gif differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/dashboard-overview.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/dashboard-overview.png
index 273b2ada0a..6852eb1717 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/dashboard-overview.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/dashboard-overview.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/hero-image.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/hero-image.png
index f2e258c505..a9aacdc4ca 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/hero-image.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/hero-image.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/relay-connection.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/relay-connection.png
index 0132627414..742e1c8bfc 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/relay-connection.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/relay-connection.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/smart-garden-setup.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/smart-garden-setup.png
index 0514e59079..0d5703e8fd 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/smart-garden-setup.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/smart-garden-setup.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/soil-sensor.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/soil-sensor.png
index ea83337761..c21d3ffb55 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/soil-sensor.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/soil-sensor.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/thing-overview.png b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/thing-overview.png
index 7f537a267d..316ae411ce 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/thing-overview.png and b/content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/smart-garden-project/assets/thing-overview.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/image.svg b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/image.svg
index 4ca6330b5c..1703216610 100644
--- a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/image.svg
+++ b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/image.svg
@@ -1,1831 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/interactive/pinout.png b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/interactive/pinout.png
index a1305029bf..f6146387c6 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/interactive/pinout.png and b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/interactive/pinout.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG01.png b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG01.png
index 1b2ffd001e..bea2ab0f28 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG01.png and b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG01.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG02.png b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG02.png
index fc0672f420..ac4f9bb7bb 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG02.png and b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG02.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG03.png b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG03.png
index c18dbffdae..e9fbca7065 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG03.png and b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG03.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG04.png b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG04.png
index 31cf36b75b..0b8b5bc628 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG04.png and b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG04.png differ
diff --git a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG05.png b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG05.png
index 16b630b6fd..d7788cd18f 100644
Binary files a/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG05.png and b/content/hardware/01.mkr/03.carriers/mkr-motor-carrier/tutorials/mkr-motor-carrier-battery/assets/MKRMOTORCARRIER_T1_IMG05.png differ
diff --git a/content/hardware/01.mkr/image-480.png b/content/hardware/01.mkr/image-480.png
index 531c0ff614..e29f39d0c9 100644
Binary files a/content/hardware/01.mkr/image-480.png and b/content/hardware/01.mkr/image-480.png differ
diff --git a/content/hardware/01.mkr/image.png b/content/hardware/01.mkr/image.png
index 3a2d6c0bfb..122b6066bf 100644
Binary files a/content/hardware/01.mkr/image.png and b/content/hardware/01.mkr/image.png differ
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/Pinout_UNOMiniLE_80.png b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/Pinout_UNOMiniLE_80.png
index 50557922e1..c0709a5984 100644
Binary files a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/Pinout_UNOMiniLE_80.png and b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/Pinout_UNOMiniLE_80.png differ
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/boardOutline_60.png b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/boardOutline_60.png
index 70b3bfbaea..2fc222432b 100644
Binary files a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/boardOutline_60.png and b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/boardOutline_60.png differ
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/boardTopology.png b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/boardTopology.png
index 3bdfda4c74..f77e8e9635 100644
Binary files a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/boardTopology.png and b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/boardTopology.png differ
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/featured.png b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/featured.png
index ea70c6d81d..f8c65faa66 100644
Binary files a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/featured.png and b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/featured.png differ
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/powerTree_80.png b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/powerTree_80.png
index 151bf94e29..2f06a3698f 100644
Binary files a/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/powerTree_80.png and b/content/hardware/02.uno/boards/uno-mini-limited-edition/datasheet/assets/powerTree_80.png differ
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/image.svg b/content/hardware/02.uno/boards/uno-mini-limited-edition/image.svg
index 715b9835bc..8ee736147c 100644
--- a/content/hardware/02.uno/boards/uno-mini-limited-edition/image.svg
+++ b/content/hardware/02.uno/boards/uno-mini-limited-edition/image.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/interactive/ABX00062-pinout.png b/content/hardware/02.uno/boards/uno-mini-limited-edition/interactive/ABX00062-pinout.png
index 50557922e1..c0709a5984 100644
Binary files a/content/hardware/02.uno/boards/uno-mini-limited-edition/interactive/ABX00062-pinout.png and b/content/hardware/02.uno/boards/uno-mini-limited-edition/interactive/ABX00062-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/ABX00062-pinout.png b/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/ABX00062-pinout.png
index 50557922e1..c0709a5984 100644
Binary files a/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/ABX00062-pinout.png and b/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/ABX00062-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/UNO-Mini-LE-external-power.png b/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/UNO-Mini-LE-external-power.png
index 9e21e55f31..700fbef5f7 100644
Binary files a/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/UNO-Mini-LE-external-power.png and b/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/UNO-Mini-LE-external-power.png differ
diff --git a/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/Uno_Mini_LE_Top.jpg b/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/Uno_Mini_LE_Top.jpg
index ddcfc8f301..b6e673c004 100644
Binary files a/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/Uno_Mini_LE_Top.jpg and b/content/hardware/02.uno/boards/uno-mini-limited-edition/tutorials/uno-mini-le-guide/assets/Uno_Mini_LE_Top.jpg differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-comm-components.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-comm-components.png
index 512b9ae8d5..e5cb309ca5 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-comm-components.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-comm-components.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-header-expansion.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-header-expansion.png
index af22b11048..3ec4408a25 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-header-expansion.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-header-expansion.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-leds.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-leds.png
index 5156577b2d..b6b54bcaf5 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-leds.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-leds.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-main-components.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-main-components.png
index 40653c7426..cee9ac899e 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-main-components.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-main-components.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-power-button.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-power-button.png
index 27499a3ac4..ece559decc 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-power-button.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-power-button.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-power-supply.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-power-supply.png
index a110ad0d9f..df28d52f77 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-power-supply.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173-power-supply.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_block_diagram.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_block_diagram.png
index 23482c0ec1..a15c84eb74 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_block_diagram.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_block_diagram.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_headers.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_headers.png
index c3b010b428..544b8b8c30 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_headers.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_headers.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_pinout.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_pinout.png
index 53fa111d0e..2048d2efbf 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_pinout.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_power_tree.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_power_tree.png
index e2537f0d0f..bf3696e9d0 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_power_tree.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/ABX00162-ABX00173_power_tree.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/featured.png b/content/hardware/02.uno/boards/uno-q/datasheet/assets/featured.png
index dc64607136..5fd3540ad0 100644
Binary files a/content/hardware/02.uno/boards/uno-q/datasheet/assets/featured.png and b/content/hardware/02.uno/boards/uno-q/datasheet/assets/featured.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/datasheet/assets/mechanical_drawing_unoq.svg b/content/hardware/02.uno/boards/uno-q/datasheet/assets/mechanical_drawing_unoq.svg
index 922feae24c..ee5ce6c5c8 100644
--- a/content/hardware/02.uno/boards/uno-q/datasheet/assets/mechanical_drawing_unoq.svg
+++ b/content/hardware/02.uno/boards/uno-q/datasheet/assets/mechanical_drawing_unoq.svg
@@ -1,7919 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-q/image.svg b/content/hardware/02.uno/boards/uno-q/image.svg
index ac92aadacc..8cacdc2bd7 100644
--- a/content/hardware/02.uno/boards/uno-q/image.svg
+++ b/content/hardware/02.uno/boards/uno-q/image.svg
@@ -1,1460 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-q/interactive/ABX00162-pinout.png b/content/hardware/02.uno/boards/uno-q/interactive/ABX00162-pinout.png
index 53fa111d0e..2048d2efbf 100644
Binary files a/content/hardware/02.uno/boards/uno-q/interactive/ABX00162-pinout.png and b/content/hardware/02.uno/boards/uno-q/interactive/ABX00162-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/Simple-pinout-ABX00162.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/Simple-pinout-ABX00162.png
index 53fa111d0e..2048d2efbf 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/Simple-pinout-ABX00162.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/Simple-pinout-ABX00162.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/analog-adc.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/analog-adc.png
index 5d3d84c70d..01cb161963 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/analog-adc.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/analog-adc.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/analog-dac.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/analog-dac.png
index 9747dbe1ea..05b420b1c6 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/analog-dac.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/analog-dac.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/app-lab-download.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/app-lab-download.png
index db56426d1b..dc68cf3541 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/app-lab-download.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/app-lab-download.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/app-lab.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/app-lab.png
index 0be09a45b4..2f8ad81b18 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/app-lab.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/app-lab.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/arduino-ide.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/arduino-ide.png
index b5a2f5bfe0..cf83f71d4f 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/arduino-ide.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/arduino-ide.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/blink-flash.gif b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/blink-flash.gif
index 4404f40a78..f7d186b135 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/blink-flash.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/blink-flash.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/blinking-led.gif b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/blinking-led.gif
index 6e73c74556..575bfff937 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/blinking-led.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/blinking-led.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/bluetooth.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/bluetooth.png
index e95ebc31fc..4dfde700c6 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/bluetooth.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/bluetooth.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/bsp-install.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/bsp-install.png
index 21a8a58c10..9e427e3c52 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/bsp-install.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/bsp-install.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/code-pasted-matrix.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/code-pasted-matrix.png
index 0102cfae27..baeb287d40 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/code-pasted-matrix.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/code-pasted-matrix.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/debug-shell-2.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/debug-shell-2.png
index 0d4cdafedd..2f0145088e 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/debug-shell-2.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/debug-shell-2.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/debug-shell.gif b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/debug-shell.gif
index 512f41f570..5b932a3343 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/debug-shell.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/debug-shell.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/digital-io.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/digital-io.png
index 60615c744a..24898e392b 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/digital-io.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/digital-io.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/i2c.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/i2c.png
index 43db7d453a..cd072ad302 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/i2c.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/i2c.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/linux-led-control.gif b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/linux-led-control.gif
index c2130eb1da..c3af3f3af0 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/linux-led-control.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/linux-led-control.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix-example-new.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix-example-new.png
index 9736c3936d..e747e182ff 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix-example-new.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix-example-new.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix-grayscale.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix-grayscale.png
index 68c48a95f9..a7cd74c96b 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix-grayscale.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix-grayscale.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix.png
index 1760aa87d7..8bae452e15 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/matrix.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/mcu-led-test.gif b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/mcu-led-test.gif
index 196ecef8d1..f08cc6455d 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/mcu-led-test.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/mcu-led-test.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modes-2.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modes-2.png
index c573deb883..66388b4d9c 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modes-2.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modes-2.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modes.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modes.png
index 1d6d3961e6..26bc153964 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modes.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modes.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modulino.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modulino.png
index c0c50017f7..f5aa3051e5 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modulino.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/modulino.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/network-mode.gif b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/network-mode.gif
index 63de16605a..d19291103f 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/network-mode.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/network-mode.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/power-button.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/power-button.png
index f343b5cf25..ac5584ed39 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/power-button.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/power-button.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/power-options-3.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/power-options-3.png
index 28bd9784d6..6884fcf148 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/power-options-3.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/power-options-3.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/pwm-output.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/pwm-output.png
index 7a2c7a6391..52e7adc053 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/pwm-output.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/pwm-output.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/qwiic.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/qwiic.png
index 8324343e06..e512b092f0 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/qwiic.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/qwiic.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/radio-module.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/radio-module.png
index 47f3868f53..014c8c0cc7 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/radio-module.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/radio-module.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/rgb-led.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/rgb-led.png
index cce42daafb..3381385fbf 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/rgb-led.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/rgb-led.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/rpc.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/rpc.png
index 0ec63491e6..86889e52b8 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/rpc.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/rpc.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/scan.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/scan.png
index bdec3058ea..e121949296 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/scan.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/scan.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/spi.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/spi.png
index 21327956bb..d39bf7ae95 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/spi.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/spi.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/thumbnail.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/thumbnail.png
index 9bcf75cb80..c040ef8689 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/thumbnail.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/thumbnail.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uart.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uart.png
index 09e1ee66fd..16c2357aee 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uart.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uart.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-form-factor.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-form-factor.png
index 145c835254..ef8ff2ddda 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-form-factor.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-form-factor.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-q-architecture-3.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-q-architecture-3.png
index 0bfa1ac496..ed024f9b94 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-q-architecture-3.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-q-architecture-3.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-q-matrix.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-q-matrix.png
index b314179d3e..25e68d93ab 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-q-matrix.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/uno-q-matrix.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/usb.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/usb.png
index b0f9051ebc..2e19255224 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/usb.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/usb.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/wifi-new.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/wifi-new.png
index 332ed00b02..25ebdb7f61 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/wifi-new.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/wifi-new.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/wifi.png b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/wifi.png
index 0ffe8ab486..049a809844 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/wifi.png and b/content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/assets/wifi.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/app-lab.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/app-lab.png
index 02f1962d9e..2659c8c01e 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/app-lab.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/app-lab.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/assembly.gif b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/assembly.gif
index f3a2913639..71d151ac95 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/assembly.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/assembly.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/desktop.gif b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/desktop.gif
index c2ec71d2df..5b36c2e2bc 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/desktop.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/desktop.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/hardware.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/hardware.png
index d611f975c8..bb15b4d781 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/hardware.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/hardware.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/keyboard.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/keyboard.png
index 6e2454de70..fbe9d5bfc9 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/keyboard.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/keyboard.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/login-credentials.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/login-credentials.png
index 03dc4a3f29..7675e566f7 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/login-credentials.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/login-credentials.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/login-new.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/login-new.png
index 954fa86738..9c037e6f9a 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/login-new.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/login-new.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/network-mode.gif b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/network-mode.gif
index 63de16605a..d19291103f 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/network-mode.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/network-mode.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/network-new.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/network-new.png
index f017b05cb0..5d745879f6 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/network-new.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/network-new.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/peripherals.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/peripherals.png
index 25e0a8338f..fe9275e2e1 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/peripherals.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/peripherals.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/power.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/power.png
index 9697b81c60..7238271393 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/power.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/power.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/ready-to-use.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/ready-to-use.png
index 0d75129f18..1ce655b56e 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/ready-to-use.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/ready-to-use.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/thumbnail.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/thumbnail.png
index c44e663821..3e67b505f0 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/thumbnail.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/thumbnail.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/webcam.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/webcam.png
index 2a9a23a1a2..4becd1bc78 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/webcam.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/webcam.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/wifi-new.png b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/wifi-new.png
index 332ed00b02..25ebdb7f61 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/wifi-new.png and b/content/hardware/02.uno/boards/uno-q/tutorials/02.single-board-computer/assets/wifi-new.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/ABX00162-ABX00173_power_tree.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/ABX00162-ABX00173_power_tree.png
index e2537f0d0f..bf3696e9d0 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/ABX00162-ABX00173_power_tree.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/ABX00162-ABX00173_power_tree.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-analog.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-analog.png
index b2c1b78307..6ed4230b73 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-analog.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-analog.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-anx7625.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-anx7625.png
index 25893d3d7f..c9bb82edaa 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-anx7625.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-anx7625.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-cond-oper.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-cond-oper.png
index 66c0f0cb43..c774ae2a39 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-cond-oper.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-cond-oper.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-headers.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-headers.png
index c3b010b428..544b8b8c30 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-headers.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-headers.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-pmic.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-pmic.png
index f40966be9a..7556e19a1f 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-pmic.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-pmic.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-power-hero.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-power-hero.png
index 48b904f5ee..a03749eea8 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-power-hero.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-power-hero.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-power-supply.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-power-supply.png
index a110ad0d9f..df28d52f77 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-power-supply.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-power-supply.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-signal.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-signal.png
index d5c99a45f1..ab38edb6bd 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-signal.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-signal.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-voltage-rails.png b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-voltage-rails.png
index 19212b159f..161df8a551 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-voltage-rails.png and b/content/hardware/02.uno/boards/uno-q/tutorials/03.power-specification/assets/uno-q-voltage-rails.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/error-finder.png b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/error-finder.png
index e8665072c3..322e315dee 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/error-finder.png and b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/error-finder.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/flash-uno-q.png b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/flash-uno-q.png
index 447397348d..e01bdc2bb6 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/flash-uno-q.png and b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/flash-uno-q.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/flashing-tool-2.gif b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/flashing-tool-2.gif
index ae0a971e82..c51d41daf7 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/flashing-tool-2.gif and b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/flashing-tool-2.gif differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/linux.png b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/linux.png
index 0248fd7360..06fbd833c2 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/linux.png and b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/linux.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/macos.png b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/macos.png
index 38167c81d3..f6040396ad 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/macos.png and b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/macos.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/windows.png b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/windows.png
index 79f7fc386f..e38c635da0 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/windows.png and b/content/hardware/02.uno/boards/uno-q/tutorials/04.update-image/assets/windows.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-linux.png b/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-linux.png
index 18d18c1e43..61f827b572 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-linux.png and b/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-linux.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-macos.png b/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-macos.png
index c33b0c1702..28b8b80b99 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-macos.png and b/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-macos.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-windows.png b/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-windows.png
index 47b6e78fc4..4d124c4d3d 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-windows.png and b/content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/assets/ssh-windows.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.adb/assets/board-terminal.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.adb/assets/board-terminal.png
index 3a83ffa5ee..37a0c424d5 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.adb/assets/board-terminal.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.adb/assets/board-terminal.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.adb/assets/connected-devices.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.adb/assets/connected-devices.png
index ed27cffab4..cd1530bd5a 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.adb/assets/connected-devices.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.adb/assets/connected-devices.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-creds-2.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-creds-2.png
index 4206b3afb3..36be16ffaf 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-creds-2.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-creds-2.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-creds.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-creds.png
index dc66bb0e45..32571135e6 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-creds.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-creds.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-dashboard.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-dashboard.png
index bb87a2dd82..42594bd3e7 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-dashboard.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-dashboard.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-device.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-device.png
index 1e868f1705..2dc1119b5f 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-device.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-device.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-duplicate.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-duplicate.png
index af7bb5631b..c812b68606 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-duplicate.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-duplicate.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-thing.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-thing.png
index d2aeb534da..6601aa0a7b 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-thing.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink-thing.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink.png
index 74954be3ec..506f4e3a2d 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/cloud-blink.png differ
diff --git a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/launch-app-cloud-blink.png b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/launch-app-cloud-blink.png
index 2ea012bedb..16daa8da29 100644
Binary files a/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/launch-app-cloud-blink.png and b/content/hardware/02.uno/boards/uno-q/tutorials/06.arduino-cloud/assets/launch-app-cloud-blink.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/ABX00080-pinout.png b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/ABX00080-pinout.png
index 177f246182..ee0f97864e 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/ABX00080-pinout.png and b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/ABX00080-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/UNO_R4_Minima_Block_Diagram.png b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/UNO_R4_Minima_Block_Diagram.png
index a1b14571c6..7f43f27f06 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/UNO_R4_Minima_Block_Diagram.png and b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/UNO_R4_Minima_Block_Diagram.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/UNO_R4_Minima_Power_Tree.png b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/UNO_R4_Minima_Power_Tree.png
index 7c51876b4c..cc5b07038e 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/UNO_R4_Minima_Power_Tree.png and b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/UNO_R4_Minima_Power_Tree.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/backViewMinima.svg b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/backViewMinima.svg
index 6e8d8f2668..80b4896bd8 100644
--- a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/backViewMinima.svg
+++ b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/backViewMinima.svg
@@ -1,2447 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/featured.png b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/featured.png
index cf37b45b26..49f2dcbbc7 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/featured.png and b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/featured.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/mechanicalDrawingwMinima.png b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/mechanicalDrawingwMinima.png
index 74cd81eb37..386b602a01 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/mechanicalDrawingwMinima.png and b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/mechanicalDrawingwMinima.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/topViewMinima.svg b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/topViewMinima.svg
index 5d28b567ca..0e9696c9a5 100644
--- a/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/topViewMinima.svg
+++ b/content/hardware/02.uno/boards/uno-r4-minima/datasheet/assets/topViewMinima.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/downloads/ABX00080-pinout.png b/content/hardware/02.uno/boards/uno-r4-minima/downloads/ABX00080-pinout.png
index 177f246182..ee0f97864e 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/downloads/ABX00080-pinout.png and b/content/hardware/02.uno/boards/uno-r4-minima/downloads/ABX00080-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/image.svg b/content/hardware/02.uno/boards/uno-r4-minima/image.svg
index a3693f5999..c1d4ee6194 100644
--- a/content/hardware/02.uno/boards/uno-r4-minima/image.svg
+++ b/content/hardware/02.uno/boards/uno-r4-minima/image.svg
@@ -1,800 +1 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/interactive/ABX00080-pinout.png b/content/hardware/02.uno/boards/uno-r4-minima/interactive/ABX00080-pinout.png
index 177f246182..ee0f97864e 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/interactive/ABX00080-pinout.png and b/content/hardware/02.uno/boards/uno-r4-minima/interactive/ABX00080-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/R7FA4M1AB3CFM.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/R7FA4M1AB3CFM.png
index 6ea48a237e..021bba44f0 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/R7FA4M1AB3CFM.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/R7FA4M1AB3CFM.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/dacpin.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/dacpin.png
index 360b5d1a25..a92bf65b47 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/dacpin.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/dacpin.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/i2cpins.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/i2cpins.png
index a648f2394b..423fa995aa 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/i2cpins.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/i2cpins.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/spipins.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/spipins.png
index 309a6552b1..a9438abe22 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/spipins.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/spipins.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/swd.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/swd.png
index 909c366480..d67dbd018b 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/swd.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/assets/swd.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/hero-banner.png
index 9fafae133f..0101e61e5f 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/cheat-sheet/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/dac/assets/circuit.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/dac/assets/circuit.png
index 0d9707d42d..4dc660da12 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/dac/assets/circuit.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/dac/assets/circuit.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/breakpoint.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/breakpoint.png
index f185cae97f..0a63087a9d 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/breakpoint.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/breakpoint.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_elf.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_elf.png
index 44360f675d..e3d405f36f 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_elf.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_elf.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_preferences.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_preferences.png
index 3c5e4a72e0..16ebd828bc 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_preferences.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_preferences.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_verbose.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_verbose.png
index 6e32ba0896..81a7a0dee6 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_verbose.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ide_verbose.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_debug_session.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_debug_session.png
index da6f41a497..8fd1037c6a 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_debug_session.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_debug_session.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_elf_location.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_elf_location.png
index 459488a755..17dcba476d 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_elf_location.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_elf_location.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_find-tab.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_find-tab.png
index 6224b174af..7cfa685c4d 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_find-tab.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_find-tab.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_find_window.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_find_window.png
index 6bf24e462c..a933284a6e 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_find_window.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_find_window.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_optional_settings.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_optional_settings.png
index 205d9f08fb..c52bb67160 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_optional_settings.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_optional_settings.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_select_core.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_select_core.png
index 90f6de6bdc..5bd622ab00 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_select_core.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_select_core.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_select_debugger.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_select_debugger.png
index 3654982f33..74871572b5 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_select_debugger.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/ozone_select_debugger.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/swd_pins.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/swd_pins.png
index a7131bd19e..f43e3dd2a4 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/swd_pins.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/assets/swd_pins.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/hero-banner.png
index b8a46b7fda..9d8a86e55a 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/debugger/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/install-minima-core.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/install-minima-core.png
index 6ac83e789b..16b8927a48 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/install-minima-core.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/install-minima-core.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/minima-connected.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/minima-connected.png
index e757e601d9..91e88c9dcc 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/minima-connected.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/minima-connected.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/minima-examples.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/minima-examples.png
index 70fed42ab7..0b7970d00c 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/minima-examples.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/minima-examples.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/open-ide.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/open-ide.png
index b0eae131dc..08b6550a28 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/open-ide.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/assets/open-ide.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/hero-banner.png
index d03ff9ba90..b8ed6207bc 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/minima-getting-started/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/calc.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/calc.png
index fe6c4f31d9..75b53516f5 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/calc.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/calc.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/circuitAmplifierMinima.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/circuitAmplifierMinima.png
index ff0407642a..1e3fea14a6 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/circuitAmplifierMinima.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/circuitAmplifierMinima.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/circuitFollowerMinima.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/circuitFollowerMinima.png
index 5439f6dd34..871de88647 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/circuitFollowerMinima.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/circuitFollowerMinima.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/numCalc.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/numCalc.png
index 2f53754ae4..1631e04596 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/numCalc.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/opamp/assets/numCalc.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-compatibility/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-compatibility/hero-banner.png
index ac05ab48c5..39bdd2e430 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-compatibility/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-compatibility/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/ABX00080-pinout.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/ABX00080-pinout.png
index 0850c0d485..52f911632e 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/ABX00080-pinout.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/ABX00080-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/UNO-dimensions.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/UNO-dimensions.png
index a48542dbf0..d8068de072 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/UNO-dimensions.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/UNO-dimensions.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/breaboardPrototyping.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/breaboardPrototyping.png
index e3e7bb3685..505260ecb5 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/breaboardPrototyping.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/breaboardPrototyping.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/connections.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/connections.png
index f5de20c373..d451b03c0b 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/connections.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/connections.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/hero-family.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/hero-family.png
index 03aa5da94f..7a5514e2c3 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/hero-family.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/hero-family.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/protoShieldRev3.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/protoShieldRev3.png
index 8d413b48b6..1ac24f8b97 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/protoShieldRev3.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/protoShieldRev3.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/solderComponents.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/solderComponents.png
index 4f026f4dc0..200a290438 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/solderComponents.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/assets/solderComponents.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/hero-banner.png
index e6f5c2e08f..85233a15f5 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/shield-guide/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/ABX00087-pinout.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/ABX00087-pinout.png
index e08aecd818..cba3e2e48a 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/ABX00087-pinout.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/ABX00087-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/UNO_R4_WiFi_Block_Diagram.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/UNO_R4_WiFi_Block_Diagram.png
index 073254e342..9b15ecf9a0 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/UNO_R4_WiFi_Block_Diagram.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/UNO_R4_WiFi_Block_Diagram.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/UNO_R4_WiFi_Power_Tree.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/UNO_R4_WiFi_Power_Tree.png
index 7557a9a1cd..e2e167bfce 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/UNO_R4_WiFi_Power_Tree.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/UNO_R4_WiFi_Power_Tree.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/esp-header-2.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/esp-header-2.png
index 071f7e5a1c..3d97b770bb 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/esp-header-2.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/esp-header-2.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/esp-header.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/esp-header.png
index 40fb4a4bbf..2da1339024 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/esp-header.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/esp-header.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/featured.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/featured.png
index 11bc0ee99e..afb1182489 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/featured.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/featured.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/i2c-connector.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/i2c-connector.png
index a793fb9f63..7d8cab28c7 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/i2c-connector.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/i2c-connector.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/matrix-2.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/matrix-2.png
index b38d112a31..94e40f1775 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/matrix-2.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/matrix-2.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/matrix.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/matrix.png
index 15c215ac4c..8a9c4ff6c3 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/matrix.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/matrix.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/mechanicalDrawingWiFi.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/mechanicalDrawingWiFi.png
index 74cd81eb37..386b602a01 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/mechanicalDrawingWiFi.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/mechanicalDrawingWiFi.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/topViewWiFi.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/topViewWiFi.png
index 190c7be4da..fd8e09c2c1 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/topViewWiFi.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/topViewWiFi.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/usb_switch.png b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/usb_switch.png
index e27f4525c1..fd7eddb1be 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/usb_switch.png and b/content/hardware/02.uno/boards/uno-r4-wifi/datasheet/assets/usb_switch.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/downloads/ABX00087-pinout.png b/content/hardware/02.uno/boards/uno-r4-wifi/downloads/ABX00087-pinout.png
index e08aecd818..cba3e2e48a 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/downloads/ABX00087-pinout.png and b/content/hardware/02.uno/boards/uno-r4-wifi/downloads/ABX00087-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/image.svg b/content/hardware/02.uno/boards/uno-r4-wifi/image.svg
index e1c1f434cc..11be98ff92 100644
--- a/content/hardware/02.uno/boards/uno-r4-wifi/image.svg
+++ b/content/hardware/02.uno/boards/uno-r4-wifi/image.svg
@@ -1,1541 +1 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/interactive/ABX00087-pinout.png b/content/hardware/02.uno/boards/uno-r4-wifi/interactive/ABX00087-pinout.png
index e08aecd818..cba3e2e48a 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/interactive/ABX00087-pinout.png and b/content/hardware/02.uno/boards/uno-r4-wifi/interactive/ABX00087-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/ESP32-header.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/ESP32-header.png
index 3ea64f23d5..43a9ea9a78 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/ESP32-header.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/ESP32-header.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/ESP32-pads.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/ESP32-pads.png
index 7c3b991f9f..5ff76568a5 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/ESP32-pads.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/ESP32-pads.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/QWIIC.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/QWIIC.png
index fcb6b6a852..ea57175d7b 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/QWIIC.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/QWIIC.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/R7FA4M1AB3CFM.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/R7FA4M1AB3CFM.png
index 5b5769a599..2a6d928a19 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/R7FA4M1AB3CFM.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/R7FA4M1AB3CFM.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/RA4M1-usb-switches.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/RA4M1-usb-switches.png
index 1a3889a565..85e938570f 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/RA4M1-usb-switches.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/RA4M1-usb-switches.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/RA4M1-usb.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/RA4M1-usb.png
index 5e86b4efff..e6b0f771ec 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/RA4M1-usb.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/RA4M1-usb.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/UNO-serial.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/UNO-serial.png
index 9889992e3d..421392e0b2 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/UNO-serial.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/UNO-serial.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/dacpin.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/dacpin.png
index 3a8e0ec6d2..68547d609f 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/dacpin.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/dacpin.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/i2cpins.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/i2cpins.png
index d33f5623c4..007e5cbb05 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/i2cpins.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/i2cpins.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/spipins.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/spipins.png
index 7eac058a93..fdaf251d94 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/spipins.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/assets/spipins.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/hero-banner.png
index 50a22b7da7..45f3fb9f67 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cheat-sheet/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/configureDevice.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/configureDevice.png
index b49d8b5652..65d8493b33 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/configureDevice.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/configureDevice.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/createAgent.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/createAgent.png
index 7aadb94fa0..15a6ed88b0 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/createAgent.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/createAgent.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/finishSetUp.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/finishSetUp.png
index 51d012bc01..2b34443e4f 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/finishSetUp.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/finishSetUp.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/network.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/network.png
index 93b886d6a2..a29403065b 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/network.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/network.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/selectArduino.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/selectArduino.png
index 2829e3b364..9a63c8a19b 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/selectArduino.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/selectArduino.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/selectDevice.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/selectDevice.png
index 53773ccad2..bb9fc061bb 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/selectDevice.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/selectDevice.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/setUpNewDevice.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/setUpNewDevice.png
index 77958e4440..d7a23d1ec6 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/setUpNewDevice.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/setUpNewDevice.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/thingsOverview.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/thingsOverview.png
index fd5fa7e2b3..5d9a0fd40a 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/thingsOverview.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/assets/thingsOverview.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/hero-banner.png
index c7b50d0aec..81785c09fa 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/cloud-setup/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/dac/assets/circuit.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/dac/assets/circuit.png
index 71ac982bc3..49faa0882b 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/dac/assets/circuit.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/dac/assets/circuit.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/blink_example.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/blink_example.png
index f6b104e9ca..2e6fbea3ba 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/blink_example.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/blink_example.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/resume_code.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/resume_code.png
index bf5b1ea6c8..a462147e7b 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/resume_code.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/resume_code.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/set_breakpoints.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/set_breakpoints.png
index 053a591573..f7e833d2ad 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/set_breakpoints.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/set_breakpoints.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/set_programmer.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/set_programmer.png
index 16b7adc247..88630de50a 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/set_programmer.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/set_programmer.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/start_debugger.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/start_debugger.png
index 96684ab4c7..354629d6b2 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/start_debugger.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/assets/start_debugger.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/hero-banner.png
index 31c18ce16f..6c60f306df 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/debugger/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/esp32-upload/assets/esp32-data-pins.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/esp32-upload/assets/esp32-data-pins.png
index 2070c64f88..0845e4489e 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/esp32-upload/assets/esp32-data-pins.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/esp32-upload/assets/esp32-data-pins.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/assets/led-matrix-tool.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/assets/led-matrix-tool.png
index 20f8dafd3a..4efcdd4d20 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/assets/led-matrix-tool.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/assets/led-matrix-tool.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/assets/matrix-closeup.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/assets/matrix-closeup.png
index ffc1166a92..54dab3d622 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/assets/matrix-closeup.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/assets/matrix-closeup.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/hero-banner.png
index 5fb3137f81..205aae8d0b 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/led-matrix/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/calc.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/calc.png
index 9e47519d45..9f953dfc7a 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/calc.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/calc.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/circuitAmplifierWiFi.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/circuitAmplifierWiFi.png
index 05f53f64a4..64464235bc 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/circuitAmplifierWiFi.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/circuitAmplifierWiFi.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/circuitFollowerWiFi.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/circuitFollowerWiFi.png
index a342f65434..89b43fa3c0 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/circuitFollowerWiFi.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/circuitFollowerWiFi.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/numCalc.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/numCalc.png
index 2f53754ae4..1631e04596 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/numCalc.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/opamp/assets/numCalc.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/qwiic/assets/Qwiic-connector.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/qwiic/assets/Qwiic-connector.png
index 9af06cb83a..7a76b61ca5 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/qwiic/assets/Qwiic-connector.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/qwiic/assets/Qwiic-connector.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/qwiic/assets/Qwiic-modules.jpg b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/qwiic/assets/Qwiic-modules.jpg
index afca2193e1..230e4cf4c8 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/qwiic/assets/Qwiic-modules.jpg and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/qwiic/assets/Qwiic-modules.jpg differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/animation.gif b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/animation.gif
index c107e0a3e8..a3363e63e2 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/animation.gif and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/animation.gif differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/install-wifi-core.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/install-wifi-core.png
index 24c1b3cc30..5b31d90302 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/install-wifi-core.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/install-wifi-core.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/open-ide.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/open-ide.png
index 49cb1bae5e..12e2560886 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/open-ide.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/open-ide.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/wifi-connected.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/wifi-connected.png
index 11607854be..e4a49897a4 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/wifi-connected.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/wifi-connected.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/wifi-examples.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/wifi-examples.png
index e5c6c4c56a..d7caf63abd 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/wifi-examples.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/assets/wifi-examples.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/hero-banner.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/hero-banner.png
index 1b489779b8..f0e761ac6d 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/hero-banner.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/r4-wifi-getting-started/hero-banner.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-example-serial.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-example-serial.png
index 586216cad2..1ede14467f 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-example-serial.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-example-serial.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-example.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-example.png
index 027225b21f..04f48066a5 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-example.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-example.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-terminal.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-terminal.png
index 7e018cd5e6..bf36eacf12 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-terminal.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/addr2line-terminal.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/symbol_monitor.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/symbol_monitor.png
index 1d947c0abe..9ebc7e10ba 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/symbol_monitor.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/symbol_monitor.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/symbol_upload2.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/symbol_upload2.png
index 15a4025c68..ad0c38b65d 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/symbol_upload2.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/stack-trace/assets/symbol_upload2.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/touch/assets/HoockupGuideExample.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/touch/assets/HoockupGuideExample.png
index 40904049fa..5a50b11838 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/touch/assets/HoockupGuideExample.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/touch/assets/HoockupGuideExample.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/touch/assets/Touch_Cover_001.gif b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/touch/assets/Touch_Cover_001.gif
index 7b3f719e7c..a0e39e31d9 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/touch/assets/Touch_Cover_001.gif and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/touch/assets/Touch_Cover_001.gif differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/Circuit.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/Circuit.png
index 8c4afff3fb..83fc400633 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/Circuit.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/Circuit.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/OFF.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/OFF.png
index f7858b6c86..dc88404d46 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/OFF.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/OFF.png differ
diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/headers.png b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/headers.png
index f7f84cd38b..50efce8946 100644
Binary files a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/headers.png and b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/vrtc-off/assets/headers.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3-smd/downloads/A000073-pinout.png b/content/hardware/02.uno/boards/uno-rev3-smd/downloads/A000073-pinout.png
index 4e98017157..7598d3a3c2 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3-smd/downloads/A000073-pinout.png and b/content/hardware/02.uno/boards/uno-rev3-smd/downloads/A000073-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3-smd/image.svg b/content/hardware/02.uno/boards/uno-rev3-smd/image.svg
index 30d48977d2..7797a93753 100644
--- a/content/hardware/02.uno/boards/uno-rev3-smd/image.svg
+++ b/content/hardware/02.uno/boards/uno-rev3-smd/image.svg
@@ -1,561 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-rev3-smd/interactive/A000073-pinout.png b/content/hardware/02.uno/boards/uno-rev3-smd/interactive/A000073-pinout.png
index 4e98017157..7598d3a3c2 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3-smd/interactive/A000073-pinout.png and b/content/hardware/02.uno/boards/uno-rev3-smd/interactive/A000073-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/boardOutline.png b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/boardOutline.png
index d8d975ab82..3807a8c55b 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/boardOutline.png and b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/boardOutline.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/boardTopology.png b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/boardTopology.png
index a74ffc1482..546e9f17d8 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/boardTopology.png and b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/boardTopology.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/featured.jpg b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/featured.jpg
index 8a339a7a55..0b251201e8 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/featured.jpg and b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/featured.jpg differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/pinout.png b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/pinout.png
index 5d3262994b..d4e162113f 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/pinout.png and b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/powerTree.png b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/powerTree.png
index 151bf94e29..2f06a3698f 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/powerTree.png and b/content/hardware/02.uno/boards/uno-rev3/datasheet/assets/powerTree.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/image.svg b/content/hardware/02.uno/boards/uno-rev3/image.svg
index 33b2c51ac9..d9fcc91141 100644
--- a/content/hardware/02.uno/boards/uno-rev3/image.svg
+++ b/content/hardware/02.uno/boards/uno-rev3/image.svg
@@ -1,754 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-rev3/interactive/A000066-pinout.png b/content/hardware/02.uno/boards/uno-rev3/interactive/A000066-pinout.png
index 229b22cf4d..f32c2c4740 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/interactive/A000066-pinout.png and b/content/hardware/02.uno/boards/uno-rev3/interactive/A000066-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/board-anatomy/assets/BoardAnatomy.svg b/content/hardware/02.uno/boards/uno-rev3/tutorials/board-anatomy/assets/BoardAnatomy.svg
index ef2c390b53..964bbfe194 100644
--- a/content/hardware/02.uno/boards/uno-rev3/tutorials/board-anatomy/assets/BoardAnatomy.svg
+++ b/content/hardware/02.uno/boards/uno-rev3/tutorials/board-anatomy/assets/BoardAnatomy.svg
@@ -1,1489 +1 @@
-
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/install-uno-core.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/install-uno-core.png
index 3d36d7f441..5dc8f3f8bb 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/install-uno-core.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/install-uno-core.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/open-ide.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/open-ide.png
index 4f41f99bf2..31217591e6 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/open-ide.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/open-ide.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/uno-connected.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/uno-connected.png
index 25296c3587..e28b3d1b2b 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/uno-connected.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/uno-connected.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/uno-examples.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/uno-examples.png
index d0feb8329a..63445e57c6 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/uno-examples.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/getting-started/assets/uno-examples.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/intro-to-board/assets/arduino_board.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/intro-to-board/assets/arduino_board.png
index fc9c4eaa43..1c7ca588c3 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/intro-to-board/assets/arduino_board.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/intro-to-board/assets/arduino_board.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/Arduino-Connect1080.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/Arduino-Connect1080.png
index cb5e711a2e..c90db7b678 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/Arduino-Connect1080.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/Arduino-Connect1080.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/arduinoproperties1080.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/arduinoproperties1080.png
index ad355501dd..162f89ee1c 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/arduinoproperties1080.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/arduinoproperties1080.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/arduinosetup.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/arduinosetup.png
index 4459fb3aef..cbf2ba2e18 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/arduinosetup.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/arduinosetup.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/circuit.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/circuit.png
index 780f7e3da4..06aa408488 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/circuit.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/circuit.png differ
diff --git a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/connectiontype.png b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/connectiontype.png
index 35336aba5c..00df4c1a9e 100644
Binary files a/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/connectiontype.png and b/content/hardware/02.uno/boards/uno-rev3/tutorials/matlab-pwm-blink/assets/connectiontype.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/image.svg b/content/hardware/02.uno/boards/uno-wifi-rev2/image.svg
index 124f4f11bd..a5c1a350a8 100644
--- a/content/hardware/02.uno/boards/uno-wifi-rev2/image.svg
+++ b/content/hardware/02.uno/boards/uno-wifi-rev2/image.svg
@@ -1,1814 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/interactive/ABX00021-pinout.png b/content/hardware/02.uno/boards/uno-wifi-rev2/interactive/ABX00021-pinout.png
index ce8f4b7e07..a352bb04cf 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/interactive/ABX00021-pinout.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/interactive/ABX00021-pinout.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/board-discovered.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/board-discovered.png
index c3913bcb8e..0e07700390 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/board-discovered.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/board-discovered.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/chromestore.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/chromestore.png
index 35521c5883..4ff8fd6e0d 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/chromestore.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/chromestore.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/circuit.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/circuit.png
index ebdd08bd31..31618d80be 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/circuit.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/circuit.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/hex-file-desktop.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/hex-file-desktop.png
index 1567697d2d..165302f4e1 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/hex-file-desktop.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/hex-file-desktop.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/windows-success.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/windows-success.png
index 8364b1d129..42e11fc2de 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/windows-success.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-chromebook-installation/assets/windows-success.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG01.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG01.png
index abce10ca06..0779b38ae4 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG01.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG01.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG02.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG02.png
index 92bed0fbb7..45e5afb91c 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG02.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG02.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG03.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG03.png
index 09fb51cbc1..9bfcb54dce 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG03.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-hosting-a-webserver/assets/UnoWiFiRev2_T1_IMG03.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG01.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG01.png
index 6e2963bf27..17a044e821 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG01.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG01.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG02.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG02.png
index f3d228be05..22e386455d 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG02.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG02.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG03.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG03.png
index 56dc9280fa..2188fcef00 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG03.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG03.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG04.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG04.png
index 172ce1bf7a..0866e84caf 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG04.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG04.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG05.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG05.png
index e5aca2a886..7af2f846a8 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG05.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG05.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG06.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG06.png
index 90583e1a12..eeee489828 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG06.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG06.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG07.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG07.png
index 3c6a8c3b65..d786d71c0a 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG07.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG07.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG08.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG08.png
index 751246ee03..d76ec61b4a 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG08.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-mqtt-device-to-device/assets/UnoWiFiRev2_T2_IMG08.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG01.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG01.png
index 5aceb88367..c408475e0e 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG01.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG01.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG02.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG02.png
index 950174a9ba..b426e65e59 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG02.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG02.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG03.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG03.png
index cbdab8ee03..54438e79b3 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG03.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-scan-networks/assets/UnoWiFiRev2_T4_IMG03.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG01.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG01.png
index 23bd66a79d..0779b38ae4 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG01.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG01.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG02.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG02.png
index 0751fcc42a..5386aea5f8 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG02.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG02.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG03.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG03.png
index 9289a17b93..95ca67f8a7 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG03.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG03.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG04.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG04.png
index d3740b1162..9bbcf7f420 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG04.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG04.png differ
diff --git a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG05.png b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG05.png
index 19b0f892b9..ccd8710b84 100644
Binary files a/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG05.png and b/content/hardware/02.uno/boards/uno-wifi-rev2/tutorials/uno-wifi-r2-web-server-ap-mode/assets/UnoWiFiRev2_T3_IMG05.png differ
diff --git a/content/hardware/02.uno/image-480.png b/content/hardware/02.uno/image-480.png
index 3adf9151bf..f61a127edd 100644
Binary files a/content/hardware/02.uno/image-480.png and b/content/hardware/02.uno/image-480.png differ
diff --git a/content/hardware/02.uno/image.png b/content/hardware/02.uno/image.png
index bfcd1575c4..74c55a1264 100644
Binary files a/content/hardware/02.uno/image.png and b/content/hardware/02.uno/image.png differ
diff --git a/content/hardware/02.uno/shields/4-relays-shield/image.svg b/content/hardware/02.uno/shields/4-relays-shield/image.svg
index 81742c6e28..deaa8c42cf 100644
--- a/content/hardware/02.uno/shields/4-relays-shield/image.svg
+++ b/content/hardware/02.uno/shields/4-relays-shield/image.svg
@@ -1,693 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG01.png b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG01.png
index 1cf93c4c18..5971a54010 100644
Binary files a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG01.png and b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG01.png differ
diff --git a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG02.png b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG02.png
index c1846ee0c2..4bbb942285 100644
Binary files a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG02.png and b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG02.png differ
diff --git a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG03.png b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG03.png
index 55eca3c3dd..35fa11dd3e 100644
Binary files a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG03.png and b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG03.png differ
diff --git a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG04.png b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG04.png
index 2351506051..3879ed4975 100644
Binary files a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG04.png and b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG04.png differ
diff --git a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG05.png b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG05.png
index 6761573e2f..e4a161e593 100644
Binary files a/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG05.png and b/content/hardware/02.uno/shields/4-relays-shield/tutorials/4-relay-shield-basics/assets/4RELAY_T1_IMG05.png differ
diff --git a/content/hardware/02.uno/shields/9-axis-motion-shield/image.svg b/content/hardware/02.uno/shields/9-axis-motion-shield/image.svg
index a834a46d39..47ef549d4b 100644
--- a/content/hardware/02.uno/shields/9-axis-motion-shield/image.svg
+++ b/content/hardware/02.uno/shields/9-axis-motion-shield/image.svg
@@ -1,793 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/image.svg b/content/hardware/02.uno/shields/ethernet-shield-rev2/image.svg
index 5fb8a62338..000d916faa 100644
--- a/content/hardware/02.uno/shields/ethernet-shield-rev2/image.svg
+++ b/content/hardware/02.uno/shields/ethernet-shield-rev2/image.svg
@@ -1,894 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/advanced-chat-server/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/advanced-chat-server/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/advanced-chat-server/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/advanced-chat-server/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/advanced-chat-server/assets/EthernetShield_sch.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/advanced-chat-server/assets/EthernetShield_sch.png
index 0e5928fe2d..a2d1384743 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/advanced-chat-server/assets/EthernetShield_sch.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/advanced-chat-server/assets/EthernetShield_sch.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/barometric-pressure-web-server/assets/BaromettricPressureSensorWebServer_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/barometric-pressure-web-server/assets/BaromettricPressureSensorWebServer_bb.png
index f5abca2e2f..584c7b571d 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/barometric-pressure-web-server/assets/BaromettricPressureSensorWebServer_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/barometric-pressure-web-server/assets/BaromettricPressureSensorWebServer_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-client/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-client/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-client/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-client/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-server/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-server/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-server/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-server/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-server/assets/EthernetShield_sch.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-server/assets/EthernetShield_sch.png
index 0e5928fe2d..a2d1384743 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-server/assets/EthernetShield_sch.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/chat-server/assets/EthernetShield_sch.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/datalogger/assets/Ethernet_Shield_3Pots_schem.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/datalogger/assets/Ethernet_Shield_3Pots_schem.png
index 0f82b6f97d..04ddfb7cf4 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/datalogger/assets/Ethernet_Shield_3Pots_schem.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/datalogger/assets/Ethernet_Shield_3Pots_schem.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/datalogger/assets/datalogger-circuit.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/datalogger/assets/datalogger-circuit.png
index 94e28a2e83..c87ed72036 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/datalogger/assets/datalogger-circuit.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/datalogger/assets/datalogger-circuit.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dhcp-address-printer/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dhcp-address-printer/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dhcp-address-printer/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dhcp-address-printer/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dhcp-chat-server/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dhcp-chat-server/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dhcp-chat-server/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dhcp-chat-server/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dns-web-client/assets/ArduinoPlusEthernetShield.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dns-web-client/assets/ArduinoPlusEthernetShield.png
index 97402a167b..5086e8b114 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dns-web-client/assets/ArduinoPlusEthernetShield.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/dns-web-client/assets/ArduinoPlusEthernetShield.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/telnet-client/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/telnet-client/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/telnet-client/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/telnet-client/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-ntp-client/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-ntp-client/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-ntp-client/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-ntp-client/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-ntp-client/assets/EthernetShield_sch.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-ntp-client/assets/EthernetShield_sch.png
index 0e5928fe2d..a2d1384743 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-ntp-client/assets/EthernetShield_sch.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-ntp-client/assets/EthernetShield_sch.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-send-receive-string/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-send-receive-string/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-send-receive-string/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-send-receive-string/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-send-receive-string/assets/EthernetShield_sch.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-send-receive-string/assets/EthernetShield_sch.png
index 0e5928fe2d..a2d1384743 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-send-receive-string/assets/EthernetShield_sch.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/udp-send-receive-string/assets/EthernetShield_sch.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client-repeating/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client-repeating/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client-repeating/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client-repeating/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client-repeating/assets/EthernetShield_sch.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client-repeating/assets/EthernetShield_sch.png
index 0e5928fe2d..a2d1384743 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client-repeating/assets/EthernetShield_sch.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client-repeating/assets/EthernetShield_sch.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client/assets/EthernetShield_sch.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client/assets/EthernetShield_sch.png
index 0e5928fe2d..a2d1384743 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client/assets/EthernetShield_sch.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-client/assets/EthernetShield_sch.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-server/assets/EthernetShieldF_bb.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-server/assets/EthernetShieldF_bb.png
index 5c31557adf..abc7e016cb 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-server/assets/EthernetShieldF_bb.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-server/assets/EthernetShieldF_bb.png differ
diff --git a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-server/assets/EthernetShield_sch.png b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-server/assets/EthernetShield_sch.png
index 0e5928fe2d..a2d1384743 100644
Binary files a/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-server/assets/EthernetShield_sch.png and b/content/hardware/02.uno/shields/ethernet-shield-rev2/tutorials/web-server/assets/EthernetShield_sch.png differ
diff --git a/content/hardware/02.uno/shields/motor-shield-rev3/image.svg b/content/hardware/02.uno/shields/motor-shield-rev3/image.svg
index c488b9e0a0..152ff5bc43 100644
--- a/content/hardware/02.uno/shields/motor-shield-rev3/image.svg
+++ b/content/hardware/02.uno/shields/motor-shield-rev3/image.svg
@@ -1,1765 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG01.png b/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG01.png
index 94c1b63de9..de1a082180 100644
Binary files a/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG01.png and b/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG01.png differ
diff --git a/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG02.png b/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG02.png
index 2c925b9473..4635b25b40 100644
Binary files a/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG02.png and b/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG02.png differ
diff --git a/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG03.png b/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG03.png
index 6d1c540ba6..04968737d5 100644
Binary files a/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG03.png and b/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG03.png differ
diff --git a/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG04.png b/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG04.png
index 462ec46123..c1384baa11 100644
Binary files a/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG04.png and b/content/hardware/02.uno/shields/motor-shield-rev3/tutorials/msr3-controlling-dc-motor/assets/MotorShieldRev3_T1_IMG04.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/SPE_SHIELD_POWER_TREE.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/SPE_SHIELD_POWER_TREE.png
index d03f552b7a..d14456086d 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/SPE_SHIELD_POWER_TREE.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/SPE_SHIELD_POWER_TREE.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/SPE_Shield_Block_Diagram.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/SPE_Shield_Block_Diagram.png
index a0d4948e1e..905c4edf02 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/SPE_Shield_Block_Diagram.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/SPE_Shield_Block_Diagram.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/UNO_SPE_Pinout.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/UNO_SPE_Pinout.png
index 1f511c48b3..2231c62293 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/UNO_SPE_Pinout.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/UNO_SPE_Pinout.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/UNO_SPE_Shield_Top.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/UNO_SPE_Shield_Top.png
index 2a59d5302b..0c78c86f34 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/UNO_SPE_Shield_Top.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/UNO_SPE_Shield_Top.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/connections-rs.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/connections-rs.png
index aeb547b564..0297e4af16 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/connections-rs.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/connections-rs.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/connections-spe.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/connections-spe.png
index d88211d5ed..e3c642888f 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/connections-spe.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/connections-spe.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/dimensions.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/dimensions.png
index cecaacd1b2..92e1ecd21f 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/dimensions.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/dimensions.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/jumpers.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/jumpers.png
index f343d9f538..76b40fc79c 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/jumpers.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/jumpers.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/multidrop.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/multidrop.png
index 0d9597702f..4d2cca8585 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/multidrop.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/multidrop.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/p2p.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/p2p.png
index 669389051a..33663fa5e2 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/p2p.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/p2p.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/topology.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/topology.png
index 8d31141f6b..cb2577e62f 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/topology.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/topology.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/wiring.png b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/wiring.png
index cbd1d7f7cd..27af6bfc23 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/datasheet/assets/wiring.png and b/content/hardware/02.uno/shields/spe-shield/datasheet/assets/wiring.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/image.svg b/content/hardware/02.uno/shields/spe-shield/image.svg
index 1c7425b684..b2ff8ead82 100644
--- a/content/hardware/02.uno/shields/spe-shield/image.svg
+++ b/content/hardware/02.uno/shields/spe-shield/image.svg
@@ -1,1548 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/02.uno/shields/spe-shield/interactive/ASX00073-pinout.png b/content/hardware/02.uno/shields/spe-shield/interactive/ASX00073-pinout.png
index 6718de50a8..708b7701ba 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/interactive/ASX00073-pinout.png and b/content/hardware/02.uno/shields/spe-shield/interactive/ASX00073-pinout.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/RS-485-connector.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/RS-485-connector.png
index aeb547b564..0297e4af16 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/RS-485-connector.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/RS-485-connector.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/RS485-termination.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/RS485-termination.png
index f1110c6aef..2e79a90d4b 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/RS485-termination.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/RS485-termination.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-form-factor.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-form-factor.png
index a53a2394b7..6f62ef7952 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-form-factor.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-form-factor.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-ping-pong-01.gif b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-ping-pong-01.gif
index 88b4c876c7..737762ff68 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-ping-pong-01.gif and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-ping-pong-01.gif differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-power.gif b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-power.gif
index b22c788d6d..764e19f401 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-power.gif and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-power.gif differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-end.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-end.png
index d57db3ce78..2d7f7fa035 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-end.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-end.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-main.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-main.png
index 2639935867..8d89a74565 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-main.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-main.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-transducer.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-transducer.png
index f040423658..ad22168173 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-transducer.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/SPE-rs485-transducer-transducer.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/UNO_SPE_Pinout.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/UNO_SPE_Pinout.png
index 1f511c48b3..2231c62293 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/UNO_SPE_Pinout.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/UNO_SPE_Pinout.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/jumpers.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/jumpers.png
index f343d9f538..76b40fc79c 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/jumpers.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/jumpers.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/overview.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/overview.png
index 0ce1af1600..c239e9387c 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/overview.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/overview.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/power-connector.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/power-connector.png
index 8811f26685..76aedd653c 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/power-connector.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/power-connector.png differ
diff --git a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/spi-connectors.png b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/spi-connectors.png
index d88211d5ed..e3c642888f 100644
Binary files a/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/spi-connectors.png and b/content/hardware/02.uno/shields/spe-shield/tutorials/getting-started/assets/spi-connectors.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/BLE_Rev2_Bottom.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/BLE_Rev2_Bottom.png
index bf77d3a8fc..35a5df0c82 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/BLE_Rev2_Bottom.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/BLE_Rev2_Bottom.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/BLE_Rev2_Top.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/BLE_Rev2_Top.png
index c6fcb92e84..09d8526b32 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/BLE_Rev2_Top.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/BLE_Rev2_Top.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Nano_33_BLE_Rev2_Block_Diagram.svg b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Nano_33_BLE_Rev2_Block_Diagram.svg
index ca49510b8e..56a61fa7f6 100644
--- a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Nano_33_BLE_Rev2_Block_Diagram.svg
+++ b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Nano_33_BLE_Rev2_Block_Diagram.svg
@@ -1,106 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Nano_33_BLE_Rev2_Power_Tree.svg b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Nano_33_BLE_Rev2_Power_Tree.svg
index 6e2d5cc2e6..4e3dd36bc3 100644
--- a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Nano_33_BLE_Rev2_Power_Tree.svg
+++ b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Nano_33_BLE_Rev2_Power_Tree.svg
@@ -1,105 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Outline.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Outline.png
index ad5dfca70c..98819389fd 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Outline.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/Outline.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/featured.jpg b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/featured.jpg
index e11a9e888c..f9294da9d7 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/featured.jpg and b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/featured.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/pinout.png
index 3bd8f021f4..d9c1394cc4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/image.svg b/content/hardware/03.nano/boards/nano-33-ble-rev2/image.svg
index 252f8c0707..49af5abb4d 100644
--- a/content/hardware/03.nano/boards/nano-33-ble-rev2/image.svg
+++ b/content/hardware/03.nano/boards/nano-33-ble-rev2/image.svg
@@ -1,3104 +1 @@
-
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/interactive/ABX00071-pinout.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/interactive/ABX00071-pinout.png
index 6348f71aef..099655518c 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/interactive/ABX00071-pinout.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/interactive/ABX00071-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2_ble.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2_ble.png
index ed98c1eee2..3ec81b92e2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2_ble.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2_ble.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2_imu.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2_imu.png
index 54a0e13475..810250c9ac 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2_imu.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2_imu.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2vusb.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2vusb.png
index 4c123fb6de..ad57a2ec3b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2vusb.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/Nano33_ble_rev2vusb.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/pinout.png
index 3bd8f021f4..d9c1394cc4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/hero-banner.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/hero-banner.png
index 3cea79a81d..6dfc8c2fae 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/hero-banner.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png
index f9e388bc40..fc87efdb4d 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/colab.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/colab.png
index ce6dd06858..434f375c6b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/colab.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/colab.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif
index d3e82dc72d..8569c051ba 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png
index b88684c0a9..c16d3cd0de 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/modelTab.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/modelTab.png
index 5ae41c7d44..2f61413f6f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/modelTab.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/modelTab.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/nanoblerev2.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/nanoblerev2.png
index a0d34bd943..919b3dd7d2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/nanoblerev2.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/nanoblerev2.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/plot-1.gif b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/plot-1.gif
index a3d2efa763..bd4b084f3f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/plot-1.gif and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/plot-1.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/trainingData.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/trainingData.png
index 13ab3e06f7..492be7f30a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/trainingData.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/trainingData.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/upload.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/upload.png
index 03ae6c1721..2aff9c85d3 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/upload.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/get-started-with-machine-learning/assets/upload.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/Nano33_ble_rev2_imu.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/Nano33_ble_rev2_imu.png
index 54a0e13475..810250c9ac 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/Nano33_ble_rev2_imu.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/Nano33_ble_rev2_imu.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_acceleration.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_acceleration.png
index fc4f5bdf3e..750189406a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_acceleration.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_acceleration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_board_port.png
index b9dab51754..977425d2c1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_illustration.png
index 5bcd766202..486d2c40b5 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_include_library.png
index d8034dd18d..437559b7e2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_printing_values.png
index 45a7291327..0f6520655a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-accelerometer/assets/nano33B_02_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/Nano33_ble_rev2_imu.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/Nano33_ble_rev2_imu.png
index 54a0e13475..810250c9ac 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/Nano33_ble_rev2_imu.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/Nano33_ble_rev2_imu.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_board_port.png
index 3c1ceed673..63461d2122 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_gyroscope.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_gyroscope.png
index 3d0fa9c35e..af6e43b9fa 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_gyroscope.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_gyroscope.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_illustration.png
index ce659e6d3b..c6c3abe4ff 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_include_library.png
index d8034dd18d..437559b7e2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_printing_values.png
index 557f95e24a..92366464a4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-gyroscope/assets/nano33B_03_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/Nano33_ble_rev2_imu.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/Nano33_ble_rev2_imu.png
index 54a0e13475..810250c9ac 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/Nano33_ble_rev2_imu.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/Nano33_ble_rev2_imu.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_board_port.png
index f2ee29196f..e138d998dd 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_illustration.png
index 3b8ee04f1c..a4f02d44ec 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_include_library.png
index 6fa5d8b8a2..78ff5a8490 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_magnetometer.png b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_magnetometer.png
index 275ff9859c..1280bb2794 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_magnetometer.png and b/content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/imu-magnetometer/assets/nano33B_04_magnetometer.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/blesenseRev2_topo.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/blesenseRev2_topo.png
index 1e5092a2b7..1588e53daf 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/blesenseRev2_topo.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/blesenseRev2_topo.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/featured.jpg b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/featured.jpg
index 797d04c44c..95d252fa7b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/featured.jpg and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/featured.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/outline.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/outline.png
index 9ebede92b5..e000ab91f3 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/outline.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/outline.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/pinout.png
index 47d013e5f0..cb541817d2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/powerTree.svg b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/powerTree.svg
index 1ac49e4a7e..66742799fd 100644
--- a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/powerTree.svg
+++ b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/powerTree.svg
@@ -1,76 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/topologyBot.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/topologyBot.png
index d652b8745c..6996aca0c9 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/topologyBot.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/datasheet/assets/topologyBot.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/image.svg b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/image.svg
index cf1877b4b6..d1f0ca0fe3 100644
--- a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/image.svg
+++ b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/image.svg
@@ -1,731 +1 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/interactive/ABX00069-pinout.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/interactive/ABX00069-pinout.png
index 7012fe3d46..d52debe610 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/interactive/ABX00069-pinout.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/interactive/ABX00069-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_ble.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_ble.png
index b020599288..17fa1e1c4c 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_ble.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_ble.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_gesture.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_gesture.png
index a4cbb7c7d9..0077bc56b1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_gesture.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_gesture.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_imu.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_imu.png
index 65f7491746..5ba8efa7e9 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_imu.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_imu.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_microphone.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_microphone.png
index d944996b75..c9417da803 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_microphone.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_microphone.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_pressure.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_pressure.png
index 56463f50cc..a5ec82b472 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_pressure.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_pressure.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_rev2.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_rev2.png
index fae939ce71..e3dd2bd6bc 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_rev2.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_rev2.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_temperature.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_temperature.png
index e0be7d16aa..4b65099d7f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_temperature.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_temperature.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_vusb.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_vusb.png
index 0b5dd23645..126aa1c293 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_vusb.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/Nano33_ble_sense_vusb.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/pinout.png
index 7012fe3d46..d52debe610 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/cheat-sheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/BoardsManager.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/BoardsManager.png
index 70f5f6ed44..4c4e318097 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/BoardsManager.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/BoardsManager.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png
index f9e388bc40..fc87efdb4d 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/colab.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/colab.png
index ce6dd06858..434f375c6b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/colab.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/colab.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/create-lib.gif b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/create-lib.gif
index 58bb7d33b3..76feafd214 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/create-lib.gif and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/create-lib.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif
index d3e82dc72d..8569c051ba 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png
index b88684c0a9..c16d3cd0de 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/libManager.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/libManager.png
index 3b40465015..94355d6bd9 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/libManager.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/libManager.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/micro.gif b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/micro.gif
index 8834f5fd96..39c3dd11d8 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/micro.gif and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/micro.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/modelTab.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/modelTab.png
index 5ae41c7d44..2f61413f6f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/modelTab.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/modelTab.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/nanosenseble.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/nanosenseble.png
index 6936a76ed2..57eac29557 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/nanosenseble.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/nanosenseble.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/plot-1.gif b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/plot-1.gif
index a3d2efa763..bd4b084f3f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/plot-1.gif and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/plot-1.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/trainingData.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/trainingData.png
index 13ab3e06f7..492be7f30a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/trainingData.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/trainingData.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/upload.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/upload.png
index 03ae6c1721..2aff9c85d3 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/upload.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/get-started-with-machine-learning/assets/upload.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_board_port.png
index ada5d1b349..2acb76fe76 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_printing_values.png
index f9a55c3763..07390ff55d 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_temp_sensor.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_temp_sensor.png
index e0be7d16aa..4b65099d7f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_temp_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_temp_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_IMU.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_IMU.png
index 65f7491746..5ba8efa7e9 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_IMU.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_acceleration.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_acceleration.png
index fc4f5bdf3e..750189406a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_acceleration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_acceleration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_board_port.png
index b9dab51754..977425d2c1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_illustration.png
index 5bcd766202..486d2c40b5 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_include_library.png
index d8034dd18d..437559b7e2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_printing_values.png
index 45a7291327..0f6520655a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-accelerometer/assets/nano33BS_02_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_IMU.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_IMU.png
index 65f7491746..5ba8efa7e9 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_IMU.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_board_port.png
index 3c1ceed673..63461d2122 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_gyroscope.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_gyroscope.png
index 3d0fa9c35e..af6e43b9fa 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_gyroscope.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_gyroscope.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_illustration.png
index ce659e6d3b..c6c3abe4ff 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_include_library.png
index d8034dd18d..437559b7e2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_printing_values.png
index 557f95e24a..92366464a4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-gyroscope/assets/nano33BS_03_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_IMU.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_IMU.png
index 65f7491746..5ba8efa7e9 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_IMU.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_board_port.png
index f2ee29196f..e138d998dd 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_illustration.png
index 3b8ee04f1c..a4f02d44ec 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_include_library.png
index 6fa5d8b8a2..78ff5a8490 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_magnetometer.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_magnetometer.png
index 275ff9859c..1280bb2794 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_magnetometer.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/imu-magnetometer/assets/nano33BS_04_magnetometer.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_board_port.png
index 224c2e5557..5d9f0c0efd 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_library.png
index 9df9ce95c4..0f7e6d039c 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_printing_values.png
index efa755d40f..17aa99e1f4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_sensor.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_sensor.png
index d944996b75..c9417da803 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_testing.png b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_testing.png
index 6788bc7e1f..9537828a9e 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_testing.png and b/content/hardware/03.nano/boards/nano-33-ble-sense-rev2/tutorials/microphone-sensor/assets/nano33BS_08_testing.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/featured.jpg b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/featured.jpg
index 57445ad035..b922ece066 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/featured.jpg and b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/featured.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/outline.png b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/outline.png
index 9ebede92b5..e000ab91f3 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/outline.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/outline.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/pinout.png
index 47d013e5f0..cb541817d2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/powerTree.svg b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/powerTree.svg
index 773e6ab222..66742799fd 100644
--- a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/powerTree.svg
+++ b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/powerTree.svg
@@ -1,76 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/topologyBot.png b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/topologyBot.png
index 92484971c8..3b0570f6ea 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/topologyBot.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/topologyBot.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/topologyTop.png b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/topologyTop.png
index ce23de5efc..ca879875d5 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/topologyTop.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/datasheet/assets/topologyTop.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/image.svg b/content/hardware/03.nano/boards/nano-33-ble-sense/image.svg
index c4b129d998..f172dae4aa 100644
--- a/content/hardware/03.nano/boards/nano-33-ble-sense/image.svg
+++ b/content/hardware/03.nano/boards/nano-33-ble-sense/image.svg
@@ -1,471 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/interactive/ABX00031-pinout.png b/content/hardware/03.nano/boards/nano-33-ble-sense/interactive/ABX00031-pinout.png
index 1e4a42f20e..680f1cddbc 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/interactive/ABX00031-pinout.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/interactive/ABX00031-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_board_port.png
index b617d686bd..58560d59d7 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_graph.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_graph.png
index 14695d9308..774196c85b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_graph.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_graph.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_illustration.png
index 4cb15f593a..3d97773fba 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_library.png
index 553b951fb4..166f4aa12e 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_printing_values.png
index c929f5efd0..deb4616266 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_sensor.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_sensor.png
index 47dbfa46e7..91f9e2491c 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/barometric-sensor/assets/nano33BS_05_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img01.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img01.png
index 1a2342aa3d..58ea9854f2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img01.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img01.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img02.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img02.png
index 999dca5190..9ab07c9119 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img02.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img02.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img03.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img03.png
index 3a19e01315..3c91f37bf1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img03.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img03.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img04.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img04.png
index ea1d8be663..d51b440916 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img04.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img04.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img05.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img05.png
index 03ccfb26ef..ba1b1b1945 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img05.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img05.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img06.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img06.png
index 12cf52b432..f1a8d1e681 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img06.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img06.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img07.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img07.png
index bcc3b64bb1..1f4d9b4bb1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img07.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/ble-device-to-device/assets/nano_ble_sense_t2_img07.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_application.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_application.png
index e70cb97471..df3ee78fb2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_application.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_application.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_board_port.png
index 8711194e69..e12e219901 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_library.png
index 67fdc9831a..6ede8871b4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_printing_values.png
index eec8222ff7..b5e89cc3e4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_sensor.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_sensor.png
index df867e7cab..089da13ed1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/assets/nano33BS_09_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense.png
index 1c3f23fbaa..51ea206b82 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_ble.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_ble.png
index 92da988e07..1a64de43cc 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_ble.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_ble.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_gesture.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_gesture.png
index b2026db54e..ae0071b5eb 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_gesture.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_gesture.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_imu.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_imu.png
index cdf77ef1da..e09990db95 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_imu.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_imu.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_microphone.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_microphone.png
index 9c966a2f6d..ff9ca2d7cd 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_microphone.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_microphone.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_pressure.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_pressure.png
index 054560b7c1..1e55eba766 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_pressure.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_pressure.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_temperature.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_temperature.png
index 443716c856..43c9d5984d 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_temperature.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_temperature.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_vusb.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_vusb.png
index c670493b19..065f4c7608 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_vusb.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/Nano33_ble_sense_vusb.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/pinout.png
index 1e4a42f20e..680f1cddbc 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/cheat-sheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_1.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_1.png
index 6ba0327d31..08b074e8d1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_1.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_1.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_10.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_10.png
index 2deaabd8e2..4ad892a013 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_10.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_10.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_11.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_11.png
index a67683a0ee..c665598320 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_11.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_11.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_12.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_12.png
index 508dfc710a..5f51334cfd 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_12.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_12.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_13.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_13.png
index e3af5eba0e..fe7858af8f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_13.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_13.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_14.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_14.png
index 1512da5bcb..cc8060c805 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_14.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_14.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_15.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_15.png
index a8d527a8d4..5ea6d9d852 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_15.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_15.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_17.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_17.png
index 715eb4dcba..915dbf834f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_17.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_17.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_18.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_18.png
index 290cd807ca..a4d7c19daf 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_18.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_18.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_19.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_19.png
index 0d7d8f5e42..b7858ee0ca 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_19.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_19.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_2.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_2.png
index 878be75b5c..8143b902dd 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_2.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_2.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_3.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_3.png
index fe55253dbd..1323845700 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_3.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_3.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_4.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_4.png
index 76d0f62769..7a2a37426b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_4.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_4.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_5.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_5.png
index aacf318e8d..1603c7ff11 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_5.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_5.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_6.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_6.png
index 507f6aee7f..5edccba370 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_6.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_6.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_7.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_7.png
index 4cc10c740a..0c67461e5e 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_7.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_7.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_8.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_8.png
index 2e0d834cc0..57644e858b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_8.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_8.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_9.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_9.png
index ca0b9c21a6..7b8cf69600 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_9.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/edge-impulse/assets/nano33BS_TML_9.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_board_port.png
index b1722999de..483092d771 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_illustration.png
index d82f3cf49d..c9176c4959 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_library.png
index f5f6de89f4..8bd27a6a91 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_printing_values.png
index f8f3a51afb..dde36a1d07 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_sensor.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_sensor.png
index 77e6c714b8..666de6fbce 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_testing.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_testing.png
index ec39473a3a..3ad9dc1bac 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_testing.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/gesture-sensor/assets/nano33BS_07_testing.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png
index f9e388bc40..fc87efdb4d 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/Untitled-2-1024x578.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/colab.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/colab.png
index ce6dd06858..434f375c6b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/colab.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/colab.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/create-lib.gif b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/create-lib.gif
index 58bb7d33b3..76feafd214 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/create-lib.gif and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/create-lib.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif
index d3e82dc72d..8569c051ba 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/ezgif-1-c5bdaa9f0bee.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png
index b88684c0a9..c16d3cd0de 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/gestureClassifier.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/install-board.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/install-board.png
index 745312e4ca..782b678143 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/install-board.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/install-board.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/install-lib.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/install-lib.png
index cfacaffb40..277fad4a7c 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/install-lib.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/install-lib.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/micro.gif b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/micro.gif
index 8834f5fd96..39c3dd11d8 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/micro.gif and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/micro.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/modelTab.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/modelTab.png
index 5ae41c7d44..2f61413f6f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/modelTab.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/modelTab.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/nanosenseble.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/nanosenseble.png
index 4ec227fdeb..8ba5cec411 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/nanosenseble.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/nanosenseble.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/plot-1.gif b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/plot-1.gif
index a3d2efa763..bd4b084f3f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/plot-1.gif and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/plot-1.gif differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/trainingData.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/trainingData.png
index 13ab3e06f7..492be7f30a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/trainingData.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/trainingData.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/upload.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/upload.png
index 03ae6c1721..2aff9c85d3 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/upload.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/get-started-with-machine-learning/assets/upload.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_board_port.png
index 34dd813002..7eb86b14ba 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_include_library.png
index b1b5ef11a4..e1ebdbb788 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_printing_values.png
index 4566b8ca1b..71013487d8 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_temp_sensor.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_temp_sensor.png
index 2e383da566..0b5eb946a3 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_temp_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/humidity-and-temperature-sensor/assets/nano33BS_01_temp_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/i2c/assets/nano33BS_06_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/i2c/assets/nano33BS_06_illustration.png
index c77769f295..8d070a6863 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/i2c/assets/nano33BS_06_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/i2c/assets/nano33BS_06_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/i2c/assets/nano33BS_06_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/i2c/assets/nano33BS_06_printing_values.png
index dceac97e25..1b4ab23b88 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/i2c/assets/nano33BS_06_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/i2c/assets/nano33BS_06_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_IMU.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_IMU.png
index b3c4feb41c..b705e03989 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_IMU.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_acceleration.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_acceleration.png
index fc4f5bdf3e..750189406a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_acceleration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_acceleration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_board_port.png
index 36e7cc220f..14294f93d7 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_illustration.png
index 5bcd766202..486d2c40b5 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_include_library.png
index ee417e84ab..da104e15ee 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_printing_values.png
index 506ef86bae..9fa09dfe62 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-accelerometer/assets/nano33BS_02_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_IMU.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_IMU.png
index b3c4feb41c..b705e03989 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_IMU.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_board_port.png
index a68f9bec14..ac22bbe8c5 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_gyroscope.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_gyroscope.png
index 3d0fa9c35e..af6e43b9fa 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_gyroscope.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_gyroscope.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_illustration.png
index ce659e6d3b..c6c3abe4ff 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_include_library.png
index ee417e84ab..da104e15ee 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_printing_values.png
index fa9deaf0dd..f425b34270 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-gyroscope/assets/nano33BS_03_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_IMU.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_IMU.png
index b3c4feb41c..b705e03989 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_IMU.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_board_port.png
index 68d03b0795..b359cd7786 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_illustration.png
index 3b8ee04f1c..a4f02d44ec 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_include_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_include_library.png
index ee417e84ab..da104e15ee 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_magnetometer.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_magnetometer.png
index 275ff9859c..1280bb2794 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_magnetometer.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/imu-magnetometer/assets/nano33BS_04_magnetometer.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_board_port.png
index 224c2e5557..5d9f0c0efd 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_library.png
index 9df9ce95c4..0f7e6d039c 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_printing_values.png
index efa755d40f..17aa99e1f4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_sensor.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_sensor.png
index d096975705..dd2f4266e4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_testing.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_testing.png
index 6788bc7e1f..9537828a9e 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_testing.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/microphone-sensor/assets/nano33BS_08_testing.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_board_port.png
index 75545f1e6c..f4b97471e5 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_illustration.png
index 009929ada6..98ac842421 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_library.png
index 14d1751280..55cbd954cd 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_printing_values.png
index bfdc793e85..e676353dce 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_sensor.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_sensor.png
index 77e6c714b8..666de6fbce 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/proximity-sensor/assets/nano33BS_11_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_board_port.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_board_port.png
index cc15f0ff91..2223aaca8f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_illustration.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_illustration.png
index 1be13d57c3..d6299d9e0b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_library.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_library.png
index 48f5b297cc..2ad1145624 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_library.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_printing_values.png
index a179ab5c94..9a74de3174 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_sensor.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_sensor.png
index 77e6c714b8..666de6fbce 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_testing.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_testing.png
index be67df88fa..31ad2f2a90 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_testing.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/rgb-sensor/assets/nano33BS_10_testing.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/uart/assets/nano33BS_12_circuit.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/uart/assets/nano33BS_12_circuit.png
index b079e64a38..8df224089f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/uart/assets/nano33BS_12_circuit.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/uart/assets/nano33BS_12_circuit.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/uart/assets/nano33BS_12_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/uart/assets/nano33BS_12_printing_values.png
index 96fc1bc2d2..8b9d37f3fa 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/uart/assets/nano33BS_12_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/uart/assets/nano33BS_12_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/featured.jpg b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/featured.jpg
index 1d122e0641..f4ccd38895 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/featured.jpg and b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/featured.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/mechanical.png b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/mechanical.png
index 9ebede92b5..e000ab91f3 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/mechanical.png and b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/mechanical.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/pinout.png
index 47d013e5f0..cb541817d2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/powerTree.svg b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/powerTree.svg
index 45b142c443..91a6760f80 100644
--- a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/powerTree.svg
+++ b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/powerTree.svg
@@ -1,46 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/topologyBot.png b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/topologyBot.png
index 92484971c8..3b0570f6ea 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/topologyBot.png and b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/topologyBot.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/topologyTop.png b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/topologyTop.png
index 0bd633d39a..df8e8409d6 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/topologyTop.png and b/content/hardware/03.nano/boards/nano-33-ble/datasheet/assets/topologyTop.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/image.svg b/content/hardware/03.nano/boards/nano-33-ble/image.svg
index 8092382323..5314a06263 100644
--- a/content/hardware/03.nano/boards/nano-33-ble/image.svg
+++ b/content/hardware/03.nano/boards/nano-33-ble/image.svg
@@ -1,559 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-ble/interactive/ABX00030-pinout.png b/content/hardware/03.nano/boards/nano-33-ble/interactive/ABX00030-pinout.png
index b7d8b28f60..fd885ad630 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/interactive/ABX00030-pinout.png and b/content/hardware/03.nano/boards/nano-33-ble/interactive/ABX00030-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_application.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_application.png
index 5b9a19d5c7..eca0037703 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_application.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_application.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_board_port.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_board_port.png
index 8711194e69..14b4f13520 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_library.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_library.png
index 67fdc9831a..2e0cb434b7 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_library.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_printing_values.png
index eec8222ff7..39616b1a5d 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_sensor.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_sensor.png
index f0875df689..9dd5acda15 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_sensor.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/assets/nano33BLE_04_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/i2c/assets/nano33BS_06_illustration.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/i2c/assets/nano33BS_06_illustration.png
index c77769f295..aa36395bb8 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/i2c/assets/nano33BS_06_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/i2c/assets/nano33BS_06_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/i2c/assets/nano33BS_06_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/i2c/assets/nano33BS_06_printing_values.png
index dceac97e25..fc8278a452 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/i2c/assets/nano33BS_06_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/i2c/assets/nano33BS_06_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_IMU.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_IMU.png
index c3b618ab38..e595f767ec 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_IMU.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_acceleration.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_acceleration.png
index cb46eb0142..36d3cb8594 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_acceleration.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_acceleration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_board_port.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_board_port.png
index 1091897f1e..799729da30 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_illustration.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_illustration.png
index d58256cca4..42db06508d 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_include_library.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_include_library.png
index ee417e84ab..da104e15ee 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_printing_values.png
index 033d81ba92..e01b09f6a7 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/assets/nano33BLE_01_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_IMU.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_IMU.png
index c3b618ab38..e595f767ec 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_IMU.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_board_port.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_board_port.png
index a68f9bec14..ac22bbe8c5 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_gyroscope.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_gyroscope.png
index 394ede5c90..f2d936ef4f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_gyroscope.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_gyroscope.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_illustration.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_illustration.png
index 916766bfac..0bf810ce43 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_include_library.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_include_library.png
index ee417e84ab..da104e15ee 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_printing_values.png
index fa9deaf0dd..f425b34270 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-gyroscope/assets/nano33BLE_02_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_IMU.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_IMU.png
index c3b618ab38..e595f767ec 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_IMU.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_board_port.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_board_port.png
index 71b6c3f47d..0146267a7c 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_board_port.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_illustration.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_illustration.png
index 80452d293d..aefae97d8f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_illustration.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_include_library.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_include_library.png
index ee417e84ab..da104e15ee 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_include_library.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_magnetometer.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_magnetometer.png
index 6c69622933..43d9db3b73 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_magnetometer.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-magnetometer/assets/nano33BLE_03_magnetometer.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/uart/assets/nano33BS_12_circuit.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/uart/assets/nano33BS_12_circuit.png
index b079e64a38..8df224089f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/uart/assets/nano33BS_12_circuit.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/uart/assets/nano33BS_12_circuit.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-ble/tutorials/uart/assets/nano33BS_12_printing_values.png b/content/hardware/03.nano/boards/nano-33-ble/tutorials/uart/assets/nano33BS_12_printing_values.png
index 96fc1bc2d2..8b9d37f3fa 100644
Binary files a/content/hardware/03.nano/boards/nano-33-ble/tutorials/uart/assets/nano33BS_12_printing_values.png and b/content/hardware/03.nano/boards/nano-33-ble/tutorials/uart/assets/nano33BS_12_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/boardTopologyBot.png b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/boardTopologyBot.png
index b690b6074e..3579706b60 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/boardTopologyBot.png and b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/boardTopologyBot.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/boardTopologyTop.png b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/boardTopologyTop.png
index 9ea772fc50..819c15c3e4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/boardTopologyTop.png and b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/boardTopologyTop.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/connectorsBot.png b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/connectorsBot.png
index 0977e86214..d7893dc8fb 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/connectorsBot.png and b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/connectorsBot.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/connectorsTop.png b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/connectorsTop.png
index b24bf7c566..6a6515f123 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/connectorsTop.png and b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/connectorsTop.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/featured.jpg b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/featured.jpg
index 94bc3d3765..04f8d44794 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/featured.jpg and b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/featured.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/mechanicalMeasures.png b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/mechanicalMeasures.png
index faa329f2d0..4cfbbd46aa 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/mechanicalMeasures.png and b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/mechanicalMeasures.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/pinout.png
index af4d13f2b1..7f61bf1f62 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/powerTree.svg b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/powerTree.svg
index 8c2b79a1d5..bf4be1be91 100644
--- a/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/powerTree.svg
+++ b/content/hardware/03.nano/boards/nano-33-iot/datasheet/assets/powerTree.svg
@@ -1,58 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-iot/image.svg b/content/hardware/03.nano/boards/nano-33-iot/image.svg
index 36a3c46c25..620f67f318 100644
--- a/content/hardware/03.nano/boards/nano-33-iot/image.svg
+++ b/content/hardware/03.nano/boards/nano-33-iot/image.svg
@@ -1,464 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-33-iot/interactive/ABX00027-pinout.png b/content/hardware/03.nano/boards/nano-33-iot/interactive/ABX00027-pinout.png
index fd4993b730..925a3fa4ab 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/interactive/ABX00027-pinout.png and b/content/hardware/03.nano/boards/nano-33-iot/interactive/ABX00027-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_application.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_application.png
index e87d1128cd..19e33c195b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_application.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_application.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_board_port.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_board_port.png
index 787eaf8f4a..255a559e91 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_board_port.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_library.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_library.png
index 7b504bab01..8388d80dcb 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_library.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_printing_values.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_printing_values.png
index be2625ff09..256a4860f7 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_printing_values.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/assets/nano33IOT_03_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/i2c/assets/nano33BS_06_illustration.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/i2c/assets/nano33BS_06_illustration.png
index c77769f295..aa36395bb8 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/i2c/assets/nano33BS_06_illustration.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/i2c/assets/nano33BS_06_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/i2c/assets/nano33BS_06_printing_values.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/i2c/assets/nano33BS_06_printing_values.png
index dceac97e25..fc8278a452 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/i2c/assets/nano33BS_06_printing_values.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/i2c/assets/nano33BS_06_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_board_port.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_board_port.png
index 68e3183b21..e410533924 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_board_port.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_ifttt_create.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_ifttt_create.png
index 8b5be6ef28..499e5cdc97 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_ifttt_create.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_ifttt_create.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_library.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_library.png
index 9130dd3e72..87d0c61535 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_library.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_printing_values.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_printing_values.png
index 962b3d8a83..9b830a23c6 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_printing_values.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_secret_tab1.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_secret_tab1.png
index 651ff3e466..e99720a583 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_secret_tab1.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_secret_tab1.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_secret_tab2.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_secret_tab2.png
index ba20db37e9..b77140173a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_secret_tab2.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_secret_tab2.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_sensor.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_sensor.png
index 27d4b32ddb..7195ae75b1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_sensor.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_webhooks_and_gmail.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_webhooks_and_gmail.png
index e29c98ae91..5976f0a898 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_webhooks_and_gmail.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_webhooks_and_gmail.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_webhooks_name.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_webhooks_name.png
index f7eaa23be4..2794fb09d8 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_webhooks_name.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/ifttt-connection/assets/nano33IOT_06_webhooks_name.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_IMU.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_IMU.png
index e5ffc36a90..519f138ddc 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_IMU.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_acceleration.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_acceleration.png
index eaf8b64722..dc25c339bb 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_acceleration.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_acceleration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_board_port.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_board_port.png
index 03c6268d57..761b68368f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_board_port.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_illustration.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_illustration.png
index 04fcf9511c..67f14a695a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_illustration.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_include_library.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_include_library.png
index cd309aec7e..7cc02be80e 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_include_library.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_printing_values.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_printing_values.png
index 1b6ee42ce2..42bb726c7b 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_printing_values.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-accelerometer/assets/nano33IOT_01_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_IMU.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_IMU.png
index e5ffc36a90..519f138ddc 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_IMU.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_IMU.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_board_port.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_board_port.png
index d3f193e170..f8aa02815a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_board_port.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_gyroscope.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_gyroscope.png
index 9802c48610..9bde609e51 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_gyroscope.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_gyroscope.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_illustration.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_illustration.png
index 90af0c0649..50ba302cb4 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_illustration.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_include_library.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_include_library.png
index eadb263478..3edafbb82c 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_include_library.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_include_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_printing_values.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_printing_values.png
index 46be85f8f7..8524d54d42 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_printing_values.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/imu-gyroscope/assets/nano33IOT_02_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_arduino_device.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_arduino_device.png
index 7008e40634..ef58669f11 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_arduino_device.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_arduino_device.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_create_thing-1.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_create_thing-1.png
index 0aaf9a2562..669c6cf3bf 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_create_thing-1.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_create_thing-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_create_thing.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_create_thing.png
index 27d4b32ddb..7195ae75b1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_create_thing.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_create_thing.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_dashboard_on.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_dashboard_on.png
index 654ee7390f..7a9a4d73fc 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_dashboard_on.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_dashboard_on.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_dashboard_setup.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_dashboard_setup.png
index 0457c28f72..deca1f3d13 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_dashboard_setup.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_dashboard_setup.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_device_connected.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_device_connected.png
index 8365cb2480..a8c9159a50 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_device_connected.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_device_connected.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_printing_values.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_printing_values.png
index 6cf3255c74..25b1540485 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_printing_values.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/iot-cloud/assets/nano33IOT_05_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/uart/assets/nano33BS_12_circuit.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/uart/assets/nano33BS_12_circuit.png
index b079e64a38..8df224089f 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/uart/assets/nano33BS_12_circuit.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/uart/assets/nano33BS_12_circuit.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/uart/assets/nano33BS_12_printing_values.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/uart/assets/nano33BS_12_printing_values.png
index 96fc1bc2d2..8b9d37f3fa 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/uart/assets/nano33BS_12_printing_values.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/uart/assets/nano33BS_12_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_board_port.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_board_port.png
index b889b0aff3..93e55bb75a 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_board_port.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_board_port.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_library.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_library.png
index 0e08edbf7d..6163fa20d2 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_library.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_library.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_printing_values.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_printing_values.png
index 21713020f4..93a6729bca 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_printing_values.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_secret_tab1.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_secret_tab1.png
index af21de6d4c..f7dfcf83a1 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_secret_tab1.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_secret_tab1.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_secret_tab2.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_secret_tab2.png
index a2b6976278..a4bb47ec73 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_secret_tab2.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_secret_tab2.png differ
diff --git a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_sensor.png b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_sensor.png
index 65d30ff00b..5fb8813984 100644
Binary files a/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_sensor.png and b/content/hardware/03.nano/boards/nano-33-iot/tutorials/wifi-connection/assets/nano33IOT_04_sensor.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/Nano_ESP32_Block_Diagram.png b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/Nano_ESP32_Block_Diagram.png
index 859409c14b..cb4b5beac8 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/Nano_ESP32_Block_Diagram.png and b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/Nano_ESP32_Block_Diagram.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/Nano_ESP32_Power_Tree.png b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/Nano_ESP32_Power_Tree.png
index c78afc2f35..4748638677 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/Nano_ESP32_Power_Tree.png and b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/Nano_ESP32_Power_Tree.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/featured.png b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/featured.png
index 9f260c5c23..17bf2822c1 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/featured.png and b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/featured.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/pinout.png
index 6a46ae2b68..f042766cb9 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/top-measurements.svg b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/top-measurements.svg
index 05cffce66c..6337ebe5a5 100644
--- a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/top-measurements.svg
+++ b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/top-measurements.svg
@@ -1,83 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/top.svg b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/top.svg
index f81155131e..a482b8a7a9 100644
--- a/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/top.svg
+++ b/content/hardware/03.nano/boards/nano-esp32/datasheet/assets/top.svg
@@ -1,9290 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-esp32/downloads/ABX00083-pinout.png b/content/hardware/03.nano/boards/nano-esp32/downloads/ABX00083-pinout.png
index 255dfaa818..01f191af68 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/downloads/ABX00083-pinout.png and b/content/hardware/03.nano/boards/nano-esp32/downloads/ABX00083-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/image.svg b/content/hardware/03.nano/boards/nano-esp32/image.svg
index 17711104bd..3cd92fcf08 100644
--- a/content/hardware/03.nano/boards/nano-esp32/image.svg
+++ b/content/hardware/03.nano/boards/nano-esp32/image.svg
@@ -1,499 +1 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-esp32/interactive/ABX00083-pinout.png b/content/hardware/03.nano/boards/nano-esp32/interactive/ABX00083-pinout.png
index 255dfaa818..01f191af68 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/interactive/ABX00083-pinout.png and b/content/hardware/03.nano/boards/nano-esp32/interactive/ABX00083-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/esp-pinout.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/esp-pinout.png
index 8cd9656e60..2c193ad412 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/esp-pinout.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/esp-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/esp32-examples.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/esp32-examples.png
index c2b21a6ac5..3aeaedd92f 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/esp32-examples.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/esp32-examples.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-3v3-sj.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-3v3-sj.png
index 1ac07d52c7..ce125db543 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-3v3-sj.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-3v3-sj.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-dualcore.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-dualcore.png
index fc33e170b8..d8a50d66bc 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-dualcore.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-dualcore.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-i2c.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-i2c.png
index 61bb3436b4..77ac77938f 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-i2c.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-i2c.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-iomux.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-iomux.png
index 69bdf566c7..3ea3ab1ed6 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-iomux.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-iomux.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-overview.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-overview.png
index 5e894838dd..8107b5fa5d 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-overview.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-overview.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-powertree.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-powertree.png
index 1982ff8a38..4fe3cda910 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-powertree.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-powertree.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-spi.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-spi.png
index 8f70086b0f..ea18ad6fdc 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-spi.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-spi.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-uart.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-uart.png
index 818503c00d..819e2e45c2 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-uart.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-uart.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-wifi.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-wifi.png
index 6d9f671e6d..d6fbe2a96f 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-wifi.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/assets/nano-esp32-wifi.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/hero-banner.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/hero-banner.png
index 8b61e2e7c2..b08745c38f 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/hero-banner.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cheat-sheet/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/configureDevice.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/configureDevice.png
index 2f9357cad7..b223807503 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/configureDevice.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/configureDevice.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/createAgent.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/createAgent.png
index 7aadb94fa0..15a6ed88b0 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/createAgent.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/createAgent.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/finishSetUp.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/finishSetUp.png
index 51d012bc01..2b34443e4f 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/finishSetUp.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/finishSetUp.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/network.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/network.png
index b575217a0d..2373b3900c 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/network.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/network.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/secretKey.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/secretKey.png
index c1446d6abb..f20fd90615 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/secretKey.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/secretKey.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/selectArduino.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/selectArduino.png
index 2829e3b364..9a63c8a19b 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/selectArduino.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/selectArduino.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/selectDevice.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/selectDevice.png
index 53773ccad2..bb9fc061bb 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/selectDevice.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/selectDevice.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/setUpNewDevice.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/setUpNewDevice.png
index 77958e4440..d7a23d1ec6 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/setUpNewDevice.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/setUpNewDevice.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/thingsOverview.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/thingsOverview.png
index fd5fa7e2b3..5d9a0fd40a 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/thingsOverview.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/assets/thingsOverview.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/hero-banner.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/hero-banner.png
index b01ec9cb48..41112aa93c 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/hero-banner.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/cloud-setup/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/arduinoBootloaderMode.gif b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/arduinoBootloaderMode.gif
index ba6d89c79c..43b26a2d9f 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/arduinoBootloaderMode.gif and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/arduinoBootloaderMode.gif differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/changeBoard.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/changeBoard.png
index 01cf37aeb3..1c8bd5e56e 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/changeBoard.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/changeBoard.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/continueBtn.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/continueBtn.png
index 9dc6a819fe..7453bd64d4 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/continueBtn.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/continueBtn.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/debugMode.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/debugMode.png
index 63da7d370e..6b3624e9ca 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/debugMode.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/debugMode.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/dfuMode.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/dfuMode.png
index 231befd09a..f59c14653a 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/dfuMode.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/dfuMode.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/drop-down-menu.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/drop-down-menu.png
index 5f8122251c..1415dfc6e7 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/drop-down-menu.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/drop-down-menu.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/optimize.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/optimize.png
index 935bdf34b2..75f21d5c47 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/optimize.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/optimize.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/programmer.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/programmer.png
index a65d3f0463..6683588a09 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/programmer.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/programmer.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/startDebugging.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/startDebugging.png
index cc872f0ff0..b3bb487f4d 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/startDebugging.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/assets/startDebugging.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/hero-banner.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/hero-banner.png
index dbc92825e1..1e662e34a3 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/hero-banner.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/debugging/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/action-frame.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/action-frame.png
index 473982a3cc..43d058ec3e 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/action-frame.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/action-frame.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/esp-now-communication.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/esp-now-communication.png
index 206aeacd6f..3188210f23 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/esp-now-communication.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/esp-now-communication.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/protocol-stack.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/protocol-stack.png
index 3d85a4a60b..e238e50e0d 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/protocol-stack.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/assets/protocol-stack.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/hero-banner.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/hero-banner.png
index 1cd1432fea..65abb3453c 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/hero-banner.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/core.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/core.png
index 91077ff083..a35cc2ca8a 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/core.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/core.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/examples.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/examples.png
index 37a31d7149..6af3847bc6 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/examples.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/examples.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/ide.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/ide.png
index 016bbcfab5..70b76f8e9d 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/ide.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/ide.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/selector.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/selector.png
index 72ff3ea0e9..3c9472656a 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/selector.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/assets/selector.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/hero-banner.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/hero-banner.png
index 40002e9651..de5cbd4ad3 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/hero-banner.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/getting-started-nano-esp32/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/assets/change-config.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/assets/change-config.png
index 5ec5e027a3..10a305022d 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/assets/change-config.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/assets/change-config.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/assets/esp-pinout.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/assets/esp-pinout.png
index 8cd9656e60..2c193ad412 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/assets/esp-pinout.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/assets/esp-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/hero-banner.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/hero-banner.png
index a510fbacaa..51d3dbe5ae 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/hero-banner.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/pin-setup/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/burnBootloader.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/burnBootloader.png
index 2298ff89e9..0de36de2ce 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/burnBootloader.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/burnBootloader.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/openExample.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/openExample.png
index d69ba3c89c..144d97f75a 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/openExample.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/openExample.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectBoard.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectBoard.png
index 3fe49db29b..ad85039b66 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectBoard.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectBoard.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectProgrammer.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectProgrammer.png
index 259e41f082..f4f99ad877 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectProgrammer.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectProgrammer.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectSPIFFS.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectSPIFFS.png
index 3248a090cc..a9ef9823c4 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectSPIFFS.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/selectSPIFFS.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/serialOutput.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/serialOutput.png
index f411aa6dde..3266311d51 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/serialOutput.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/serialOutput.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/twoPorts.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/twoPorts.png
index ca69004f6b..8b8cc581cd 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/twoPorts.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/twoPorts.png differ
diff --git a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/uploadProgrammer.png b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/uploadProgrammer.png
index f74c09f458..214a81acf3 100644
Binary files a/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/uploadProgrammer.png and b/content/hardware/03.nano/boards/nano-esp32/tutorials/spiff/assets/uploadProgrammer.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/datasheet/assets/featured.jpg b/content/hardware/03.nano/boards/nano-every/datasheet/assets/featured.jpg
index 9425482f31..3ce836d51a 100644
Binary files a/content/hardware/03.nano/boards/nano-every/datasheet/assets/featured.jpg and b/content/hardware/03.nano/boards/nano-every/datasheet/assets/featured.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-every/datasheet/assets/outline.png b/content/hardware/03.nano/boards/nano-every/datasheet/assets/outline.png
index 9d70d82a73..6eb55840e7 100644
Binary files a/content/hardware/03.nano/boards/nano-every/datasheet/assets/outline.png and b/content/hardware/03.nano/boards/nano-every/datasheet/assets/outline.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/datasheet/assets/pinout.png b/content/hardware/03.nano/boards/nano-every/datasheet/assets/pinout.png
index cf12e67e7a..ba37048d99 100644
Binary files a/content/hardware/03.nano/boards/nano-every/datasheet/assets/pinout.png and b/content/hardware/03.nano/boards/nano-every/datasheet/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/datasheet/assets/powerTree.svg b/content/hardware/03.nano/boards/nano-every/datasheet/assets/powerTree.svg
index 6d6c6e45f3..621c8751b7 100644
--- a/content/hardware/03.nano/boards/nano-every/datasheet/assets/powerTree.svg
+++ b/content/hardware/03.nano/boards/nano-every/datasheet/assets/powerTree.svg
@@ -1,57 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-every/datasheet/assets/topologyBot.png b/content/hardware/03.nano/boards/nano-every/datasheet/assets/topologyBot.png
index 73810df0ca..735bc113d7 100644
Binary files a/content/hardware/03.nano/boards/nano-every/datasheet/assets/topologyBot.png and b/content/hardware/03.nano/boards/nano-every/datasheet/assets/topologyBot.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/datasheet/assets/topologyTop.png b/content/hardware/03.nano/boards/nano-every/datasheet/assets/topologyTop.png
index 9e6e53366f..463d30a62e 100644
Binary files a/content/hardware/03.nano/boards/nano-every/datasheet/assets/topologyTop.png and b/content/hardware/03.nano/boards/nano-every/datasheet/assets/topologyTop.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/image.svg b/content/hardware/03.nano/boards/nano-every/image.svg
index 0d4f0d70fd..bacd27c3ae 100644
--- a/content/hardware/03.nano/boards/nano-every/image.svg
+++ b/content/hardware/03.nano/boards/nano-every/image.svg
@@ -1,592 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-every/interactive/ABX00028-pinout.png b/content/hardware/03.nano/boards/nano-every/interactive/ABX00028-pinout.png
index d51754505d..dee7288f1a 100644
Binary files a/content/hardware/03.nano/boards/nano-every/interactive/ABX00028-pinout.png and b/content/hardware/03.nano/boards/nano-every/interactive/ABX00028-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/tutorials/i2c/assets/nano33BS_06_illustration.png b/content/hardware/03.nano/boards/nano-every/tutorials/i2c/assets/nano33BS_06_illustration.png
index c77769f295..aa36395bb8 100644
Binary files a/content/hardware/03.nano/boards/nano-every/tutorials/i2c/assets/nano33BS_06_illustration.png and b/content/hardware/03.nano/boards/nano-every/tutorials/i2c/assets/nano33BS_06_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/tutorials/i2c/assets/nano33BS_06_printing_values.png b/content/hardware/03.nano/boards/nano-every/tutorials/i2c/assets/nano33BS_06_printing_values.png
index dceac97e25..fc8278a452 100644
Binary files a/content/hardware/03.nano/boards/nano-every/tutorials/i2c/assets/nano33BS_06_printing_values.png and b/content/hardware/03.nano/boards/nano-every/tutorials/i2c/assets/nano33BS_06_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/tutorials/run-4-uart/assets/NanoEvery_01_illustration.png b/content/hardware/03.nano/boards/nano-every/tutorials/run-4-uart/assets/NanoEvery_01_illustration.png
index b53576bea5..56f38c6909 100644
Binary files a/content/hardware/03.nano/boards/nano-every/tutorials/run-4-uart/assets/NanoEvery_01_illustration.png and b/content/hardware/03.nano/boards/nano-every/tutorials/run-4-uart/assets/NanoEvery_01_illustration.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/tutorials/run-4-uart/assets/NanoEvery_01_printing_values.png b/content/hardware/03.nano/boards/nano-every/tutorials/run-4-uart/assets/NanoEvery_01_printing_values.png
index 3657f556ac..2a27d18d3a 100644
Binary files a/content/hardware/03.nano/boards/nano-every/tutorials/run-4-uart/assets/NanoEvery_01_printing_values.png and b/content/hardware/03.nano/boards/nano-every/tutorials/run-4-uart/assets/NanoEvery_01_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/tutorials/uart/assets/nano33BS_12_circuit.png b/content/hardware/03.nano/boards/nano-every/tutorials/uart/assets/nano33BS_12_circuit.png
index b079e64a38..8df224089f 100644
Binary files a/content/hardware/03.nano/boards/nano-every/tutorials/uart/assets/nano33BS_12_circuit.png and b/content/hardware/03.nano/boards/nano-every/tutorials/uart/assets/nano33BS_12_circuit.png differ
diff --git a/content/hardware/03.nano/boards/nano-every/tutorials/uart/assets/nano33BS_12_printing_values.png b/content/hardware/03.nano/boards/nano-every/tutorials/uart/assets/nano33BS_12_printing_values.png
index 96fc1bc2d2..8b9d37f3fa 100644
Binary files a/content/hardware/03.nano/boards/nano-every/tutorials/uart/assets/nano33BS_12_printing_values.png and b/content/hardware/03.nano/boards/nano-every/tutorials/uart/assets/nano33BS_12_printing_values.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano-Matter_Top.png b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano-Matter_Top.png
index 09173c8158..baadfc0352 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano-Matter_Top.png and b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano-Matter_Top.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Block_Diagram.png b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Block_Diagram.png
index b4d3e1c5fa..a28bf815e8 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Block_Diagram.png and b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Block_Diagram.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Connectors.png b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Connectors.png
index 22a5a2aa34..7281bdeabe 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Connectors.png and b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Connectors.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Outline.png b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Outline.png
index b4f3ed16c4..cb16060d1b 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Outline.png and b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Outline.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_PeripheralsActuators.png b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_PeripheralsActuators.png
index d9429738a1..64bcea2c97 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_PeripheralsActuators.png and b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_PeripheralsActuators.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Pinout.png b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Pinout.png
index e6130bb594..868098d9bb 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Pinout.png and b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Power_Tree.png b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Power_Tree.png
index 0c2e4f7b4e..d6a65ff5a8 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Power_Tree.png and b/content/hardware/03.nano/boards/nano-matter/datasheet/assets/Nano_Matter_Power_Tree.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/image.svg b/content/hardware/03.nano/boards/nano-matter/image.svg
index 4ac755a784..4629474b9e 100644
--- a/content/hardware/03.nano/boards/nano-matter/image.svg
+++ b/content/hardware/03.nano/boards/nano-matter/image.svg
@@ -1,360 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-matter/interactive/ABX00112-pinout.png b/content/hardware/03.nano/boards/nano-matter/interactive/ABX00112-pinout.png
index e6130bb594..868098d9bb 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/interactive/ABX00112-pinout.png and b/content/hardware/03.nano/boards/nano-matter/interactive/ABX00112-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/adc-input-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/adc-input-2.png
index 730a7f966b..1ff6235db1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/adc-input-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/adc-input-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-2.png
index 23b78cd6b7..ee87430471 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-alexa-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-alexa-2.png
index 6497de5067..9045993610 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-alexa-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-alexa-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-alexa.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-alexa.png
index e8f43f99c6..d053b9b276 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-alexa.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-alexa.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple-2.png
index fbc5570611..a10052b400 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple-3.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple-3.png
index ded95519cb..6dce9d017c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple-3.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple-3.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple.png
index 3709b1dd55..80f98a3bd4 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-apple.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-ha-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-ha-2.png
index 85b3ebbe94..059f0e1ff9 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-ha-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-ha-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-ha.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-ha.png
index 55a63c9628..eec599f1ca 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-ha.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device-ha.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device.png
index 7dabbb5f03..af0459a1c4 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/add-device.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/alexa-matter.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/alexa-matter.gif
index de5abe3bff..c06ab25c78 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/alexa-matter.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/alexa-matter.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/api-key.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/api-key.png
index 05bce0cf34..78b8aceb9c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/api-key.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/api-key.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/apple-matter.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/apple-matter.gif
index 0c9394598b..9cd33fe51b 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/apple-matter.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/apple-matter.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/architecture-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/architecture-2.png
index 1177d65ce2..a9bb3bdcf7 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/architecture-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/architecture-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/automation-create.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/automation-create.png
index cf4aeb72db..2ecc7d53f4 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/automation-create.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/automation-create.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/automation-define.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/automation-define.png
index bfad9fb725..2e969cfb96 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/automation-define.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/automation-define.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-blinky-3.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-blinky-3.gif
index c7e909ce18..5c139dd5fa 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-blinky-3.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-blinky-3.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-blinky.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-blinky.gif
index c36804ccfd..27a238eaee 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-blinky.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-blinky.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-setup-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-setup-2.png
index ff7343ba66..ea484c4207 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-setup-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-setup-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-setup-3.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-setup-3.png
index 02a1cb1525..d73bb5dc52 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-setup-3.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ble-setup-3.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/blink-2.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/blink-2.gif
index 636a141a79..ebbf7bda40 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/blink-2.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/blink-2.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/blink-rgb-2.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/blink-rgb-2.gif
index 247a70184c..07f4c69f13 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/blink-rgb-2.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/blink-rgb-2.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/bsp-install-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/bsp-install-2.png
index 70fb4632f0..c45595f7ad 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/bsp-install-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/bsp-install-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/button-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/button-2.png
index 386d0dd2cc..d8e2e85203 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/button-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/button-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/castellated-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/castellated-2.png
index 66130cd9ba..7296aba225 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/castellated-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/castellated-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-add-variable.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-add-variable.png
index 3dd6c4451c..dc5d00de79 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-add-variable.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-add-variable.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-demo.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-demo.gif
index ec18e5b2eb..75afa502d0 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-demo.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-demo.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-login.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-login.png
index 706e68d171..7eb7e3cd20 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-login.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-login.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-setup-variable.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-setup-variable.png
index 7cee040bd2..f0a1219e2d 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-setup-variable.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-setup-variable.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-thing.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-thing.png
index af6b2de277..f4460eba67 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-thing.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/cloud-thing.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/compile-blink.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/compile-blink.png
index 09d9a90c3a..6ebc435ca5 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/compile-blink.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/compile-blink.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ext-power-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ext-power-2.png
index afe83114f7..b56677310a 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ext-power-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ext-power-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/freq-out.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/freq-out.png
index 93cf7631a3..83e145f4b8 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/freq-out.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/freq-out.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/google-matter.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/google-matter.gif
index 1c0ccaf169..ac75a8dd49 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/google-matter.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/google-matter.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/gpio-wiring-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/gpio-wiring-2.png
index d89b4d63bd..cf11c85dd0 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/gpio-wiring-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/gpio-wiring-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-matter.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-matter.gif
index 29bb242306..2e926d75e8 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-matter.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-matter.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-2.png
index 2f3d9243ce..92ea9bd98c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-cloud.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-cloud.png
index 3f0d187216..53b7c93dd3 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-cloud.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-cloud.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-config.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-config.png
index ee8220caf1..45a10b06e4 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-config.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup-config.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup.png
index e61c08d187..777665c598 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/ha-setup.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/home-assistant-temp-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/home-assistant-temp-2.png
index 5e890b0585..72daf7996d 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/home-assistant-temp-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/home-assistant-temp-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/i2c-example.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/i2c-example.png
index e93c46ea39..d11650cb0d 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/i2c-example.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/i2c-example.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-1.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-1.png
index b7385e0b04..3daa97e2a2 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-1.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-2.png
index fd4e4fd392..ac03e1a8ce 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-3.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-3.png
index b4d14fbabc..a1768df0f1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-3.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/id-gathering-3.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/lower-power-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/lower-power-2.png
index a38d1f7549..105147f71e 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/lower-power-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/lower-power-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/matter-examples-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/matter-examples-2.png
index e1ea032980..4f626083ac 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/matter-examples-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/matter-examples-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/matter-setup-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/matter-setup-2.png
index b99c45ef40..edc2fff6b1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/matter-setup-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/matter-setup-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/nano-matter-banner-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/nano-matter-banner-2.png
index 5dddec6247..7203068993 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/nano-matter-banner-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/nano-matter-banner-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/new-qr-codes.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/new-qr-codes.png
index 104d5179d5..efeb64e502 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/new-qr-codes.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/new-qr-codes.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/pwm-out.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/pwm-out.png
index 3123fd61a0..268233a223 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/pwm-out.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/pwm-out.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/qr-code-change.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/qr-code-change.gif
index 4511de9456..3d39926768 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/qr-code-change.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/qr-code-change.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/qr-code.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/qr-code.png
index 2a7845c662..de5d29a543 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/qr-code.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/qr-code.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/restart-ha.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/restart-ha.png
index 1067bd63f3..8b582ff95a 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/restart-ha.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/restart-ha.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/rgb-led-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/rgb-led-2.png
index 11fbf51fb5..80b28e6cd8 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/rgb-led-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/rgb-led-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/rst-button-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/rst-button-2.png
index 85b2bf8cc1..5752fb5799 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/rst-button-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/rst-button-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/saw-output-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/saw-output-2.png
index 5a5a5ee69e..45bb9cb4c6 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/saw-output-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/saw-output-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/simple-pinout-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/simple-pinout-2.png
index e6130bb594..868098d9bb 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/simple-pinout-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/simple-pinout-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/sine-output-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/sine-output-2.png
index a5ef985809..abfe09718b 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/sine-output-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/sine-output-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/spi-example.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/spi-example.png
index 066cac320a..c7e530ef52 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/spi-example.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/spi-example.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/uart-example.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/uart-example.png
index 43896dab64..1dce0ec520 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/uart-example.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/uart-example.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/upload-color.png b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/upload-color.png
index da700d9044..6d0d46deab 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/upload-color.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/01.user-manual/assets/upload-color.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/accel-animation.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/accel-animation.gif
index ea3c9fbcaa..b6285e6ad1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/accel-animation.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/accel-animation.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/adapter-align.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/adapter-align.jpg
index 3db07ea76a..e30f9c39f5 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/adapter-align.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/adapter-align.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/assembly-animation-2.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/assembly-animation-2.gif
index c9f9740528..0925cd534b 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/assembly-animation-2.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/assembly-animation-2.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/bsp-install-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/bsp-install-2.png
index 70fb4632f0..c45595f7ad 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/bsp-install-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/bsp-install-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/code-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/code-2.png
index 52925eb8ca..786fb394dd 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/code-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/code-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/download.png b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/download.png
index 5767d9f5ff..8adffa7263 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/download.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/download.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/features-c2.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/features-c2.jpg
index 663388f385..747b951432 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/features-c2.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/features-c2.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/forms.png b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/forms.png
index 8eeff20cc5..33d9561374 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/forms.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/forms.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/hardware.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/hardware.jpg
index abc1407ac0..75849bd4b4 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/hardware.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/hardware.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/led-demo.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/led-demo.jpg
index b13fa3af2d..1ad7f85ff6 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/led-demo.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/led-demo.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/led-rgb.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/led-rgb.jpg
index 15f4a2596d..670fb91f6e 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/led-rgb.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/led-rgb.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/libraries.png b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/libraries.png
index ad80f992d7..e14ec23da4 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/libraries.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/libraries.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/living-2.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/living-2.gif
index f4432f4deb..0d26b3a7c4 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/living-2.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/living-2.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/orientation-2.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/orientation-2.gif
index 5314bd387c..3525a1c9f9 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/orientation-2.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/orientation-2.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/power-options-1.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/power-options-1.jpg
index b9d6897270..25378a3f31 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/power-options-1.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/power-options-1.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/qr-code.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/qr-code.jpg
index bc0c6bdda7..6b76dc31ee 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/qr-code.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/qr-code.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/thumbnail.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/thumbnail.jpg
index 12a9701be0..77e1a21a3a 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/thumbnail.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/thumbnail.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/upload.png b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/upload.png
index 558f4d8f0e..86230c3c2c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/upload.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/upload.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/weather-c.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/weather-c.jpg
index ab15dcd842..b9eccc156e 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/weather-c.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/02.getting-started-matter-display/assets/weather-c.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/add-device-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/add-device-2.png
index 873bacc70f..c16ca31b44 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/add-device-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/add-device-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/add-device.png b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/add-device.png
index cee096cbc4..425683ca6a 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/add-device.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/add-device.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/animation.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/animation.gif
index e658c470c5..bdee703ed1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/animation.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/animation.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/bsp-install-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/bsp-install-2.png
index 70fb4632f0..c45595f7ad 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/bsp-install-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/bsp-install-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/diagram-v4.png b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/diagram-v4.png
index 906e155878..d0af739a08 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/diagram-v4.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/diagram-v4.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/download.png b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/download.png
index 5767d9f5ff..8adffa7263 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/download.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/download.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/matter-setup-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/matter-setup-2.png
index b99c45ef40..edc2fff6b1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/matter-setup-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/matter-setup-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/serial-monitor-v4.png b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/serial-monitor-v4.png
index 34eb5e8205..49347a2242 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/serial-monitor-v4.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/serial-monitor-v4.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/thumbnail-v4.png b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/thumbnail-v4.png
index e16168a98c..eb0f08461e 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/thumbnail-v4.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/03.matter-fan/assets/thumbnail-v4.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/add-device-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/add-device-2.png
index 873bacc70f..c16ca31b44 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/add-device-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/add-device-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/add-device.png b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/add-device.png
index cee096cbc4..425683ca6a 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/add-device.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/add-device.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/animation.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/animation.gif
index 66fdad83cf..4dc6caae5d 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/animation.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/animation.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/bsp-install-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/bsp-install-2.png
index 70fb4632f0..c45595f7ad 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/bsp-install-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/bsp-install-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/diagram-v3.png b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/diagram-v3.png
index d04e363f4c..201324888c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/diagram-v3.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/diagram-v3.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/download.png b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/download.png
index 5767d9f5ff..8adffa7263 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/download.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/download.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/matter-setup-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/matter-setup-2.png
index b99c45ef40..edc2fff6b1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/matter-setup-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/matter-setup-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/serial-monitor-v3.png b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/serial-monitor-v3.png
index e31626afb2..fd043ba44f 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/serial-monitor-v3.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/serial-monitor-v3.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/thumbnail-v3.png b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/thumbnail-v3.png
index 664fd3ac36..bbf6ff252c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/thumbnail-v3.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/04.matter-relay-lightbulb/assets/thumbnail-v3.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/add-device-alexa-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/add-device-alexa-2.png
index 6497de5067..9045993610 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/add-device-alexa-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/add-device-alexa-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/add-device-alexa.png b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/add-device-alexa.png
index e8f43f99c6..d053b9b276 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/add-device-alexa.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/add-device-alexa.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/animation.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/animation.gif
index 2620bb64b9..cc8a0c9f65 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/animation.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/animation.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/bsp-install-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/bsp-install-2.png
index 70fb4632f0..c45595f7ad 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/bsp-install-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/bsp-install-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/diagram-v2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/diagram-v2.png
index 9e9874e59d..c6392cef8c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/diagram-v2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/diagram-v2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/download.png b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/download.png
index 5767d9f5ff..8adffa7263 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/download.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/download.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/matter-setup-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/matter-setup-2.png
index b99c45ef40..edc2fff6b1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/matter-setup-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/matter-setup-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/serial-monitor-v2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/serial-monitor-v2.png
index 4bcbc5f164..3d076e76e7 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/serial-monitor-v2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/serial-monitor-v2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/thumbnail-v2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/thumbnail-v2.png
index d3c1a66cd9..8e537216ac 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/thumbnail-v2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/05.matter-rgb-light/assets/thumbnail-v2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/add-device-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/add-device-2.png
index 873bacc70f..c16ca31b44 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/add-device-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/add-device-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/add-device.png b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/add-device.png
index cee096cbc4..425683ca6a 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/add-device.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/add-device.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/animation.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/animation.gif
index 8172d7ee24..335d209d88 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/animation.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/animation.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/bsp-install-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/bsp-install-2.png
index 70fb4632f0..c45595f7ad 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/bsp-install-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/bsp-install-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/diagram-v1.png b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/diagram-v1.png
index f56dade9ae..6a45b020fd 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/diagram-v1.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/diagram-v1.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/download.png b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/download.png
index 5767d9f5ff..8adffa7263 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/download.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/download.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/matter-setup-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/matter-setup-2.png
index b99c45ef40..edc2fff6b1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/matter-setup-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/matter-setup-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/serial-monitor.png b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/serial-monitor.png
index 675a6ea7c2..65c1999915 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/serial-monitor.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/serial-monitor.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/thumbnail-v1.png b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/thumbnail-v1.png
index 66e67f25fd..a7f7713e15 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/thumbnail-v1.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/06.matter-temp-sensor/assets/thumbnail-v1.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/add-usart.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/add-usart.gif
index d30cd32135..7d9184b00f 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/add-usart.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/add-usart.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/auto-update.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/auto-update.png
index 2e91661821..e3aa784cce 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/auto-update.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/auto-update.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/baud-rate.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/baud-rate.png
index 84bc578562..17884a3d2d 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/baud-rate.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/baud-rate.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/binary-flash.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/binary-flash.png
index db3d748c0f..26cf5b702a 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/binary-flash.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/binary-flash.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/build-prj.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/build-prj.png
index 75849baf2f..c3bfed3663 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/build-prj.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/build-prj.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/chip-tool.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/chip-tool.png
index 3e4909f260..43d9e814bb 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/chip-tool.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/chip-tool.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/commission.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/commission.png
index 29b193f41d..6d50301584 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/commission.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/commission.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/connection-2.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/connection-2.png
index 6052be6203..af416ff341 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/connection-2.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/connection-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/connection.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/connection.png
index bc326b6653..26094e13ab 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/connection.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/connection.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp-banner.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp-banner.png
index d37adc3f28..9fc866babc 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp-banner.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp-flash-2.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp-flash-2.gif
index 9bf2b0f290..bad01e8440 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp-flash-2.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp-flash-2.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp32-code.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp32-code.png
index 751ab36b2c..b59559851f 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp32-code.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/esp32-code.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/example-select.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/example-select.png
index c865d47e46..c226dd0a05 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/example-select.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/example-select.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/final-arch.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/final-arch.png
index 5c605af964..5bc7021790 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/final-arch.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/final-arch.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/final-demo.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/final-demo.gif
index 2ad488a4a0..c8c88676b0 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/final-demo.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/final-demo.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/flow-ctrl.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/flow-ctrl.png
index a8a91838ee..f3b6a4eae8 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/flow-ctrl.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/flow-ctrl.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/fw-flash.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/fw-flash.gif
index d30a0a625f..60aee2bd5c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/fw-flash.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/fw-flash.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/matter-banner.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/matter-banner.png
index 5471f84891..842aba20df 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/matter-banner.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/matter-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/new-project.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/new-project.png
index db2356b032..e5e66987bb 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/new-project.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/new-project.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/otbr.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/otbr.png
index ba01e54493..30bcf2da2c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/otbr.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/otbr.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/out-debug.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/out-debug.png
index 1822714c3e..80d678fc8f 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/out-debug.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/out-debug.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/outlet-ex.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/outlet-ex.png
index 2d6b6b937d..5aa7febc79 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/outlet-ex.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/outlet-ex.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/pair-code.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/pair-code.png
index 22203fa725..6f8c945da1 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/pair-code.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/pair-code.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/project-config.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/project-config.png
index 42f4df9ce0..875aa0471d 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/project-config.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/project-config.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/project-name.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/project-name.png
index 1f428cdb47..0ae3daff1c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/project-name.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/project-name.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/quit-usart.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/quit-usart.gif
index fb2f1709c1..a238b42195 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/quit-usart.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/quit-usart.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/run-test.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/run-test.png
index c7e5a72112..d523e337fd 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/run-test.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/run-test.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/silabs-pckg.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/silabs-pckg.png
index 1e67418363..668873bf13 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/silabs-pckg.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/silabs-pckg.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/thumbnail.png b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/thumbnail.png
index 5c8f094eed..e178c98d3c 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/thumbnail.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router/assets/thumbnail.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/ani3.gif b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/ani3.gif
index dabd4ad6bf..43937dba66 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/ani3.gif and b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/ani3.gif differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/code.png b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/code.png
index 31ecdebe26..cec292e886 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/code.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/code.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/colors.jpg b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/colors.jpg
index e3f6dc58e5..6d7ec21375 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/colors.jpg and b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/colors.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/download.png b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/download.png
index 5767d9f5ff..8adffa7263 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/download.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/download.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/gestures.png b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/gestures.png
index eb46cfd9c6..3bf65c89c5 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/gestures.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/gestures.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/hardware.png b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/hardware.png
index 5debe97f65..e8f13d4dbf 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/hardware.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/hardware.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/modulino-lib.png b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/modulino-lib.png
index 9cbe7f3f42..1d2e08ffdd 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/modulino-lib.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/modulino-lib.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/stack.png b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/stack.png
index 9bf485ef7b..5988a8f4a4 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/stack.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/stack.png differ
diff --git a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/wiring.png b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/wiring.png
index f3d2886652..95fef5fc6f 100644
Binary files a/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/wiring.png and b/content/hardware/03.nano/boards/nano-matter/tutorials/08.ml-magic-wand/assets/wiring.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/ABX00142-pinout.png b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/ABX00142-pinout.png
index 3beadd599e..02d53fe357 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/ABX00142-pinout.png and b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/ABX00142-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4-Qwiic-connector.png b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4-Qwiic-connector.png
index 2deed1862a..6dbfc792e6 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4-Qwiic-connector.png and b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4-Qwiic-connector.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4_Block_Diagram.png b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4_Block_Diagram.png
index 8ad021b746..28b0482cc7 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4_Block_Diagram.png and b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4_Block_Diagram.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4_Power_Tree.png b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4_Power_Tree.png
index 7060b5f1a1..0cb44cba53 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4_Power_Tree.png and b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/Nano_R4_Power_Tree.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/board-connectors.png b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/board-connectors.png
index 75809a5836..3867810519 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/board-connectors.png and b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/board-connectors.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/featured.png b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/featured.png
index 5900de8179..4a8ff953ee 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/featured.png and b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/featured.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/mechanicalDrawingNanoR4.png b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/mechanicalDrawingNanoR4.png
index edb2dabb62..db7870464e 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/mechanicalDrawingNanoR4.png and b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/mechanicalDrawingNanoR4.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/topViewNanoR4.png b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/topViewNanoR4.png
index 794861b14c..26c660317f 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/datasheet/assets/topViewNanoR4.png and b/content/hardware/03.nano/boards/nano-r4/datasheet/assets/topViewNanoR4.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/image.svg b/content/hardware/03.nano/boards/nano-r4/image.svg
index 1ca40af57b..76c65cc963 100644
--- a/content/hardware/03.nano/boards/nano-r4/image.svg
+++ b/content/hardware/03.nano/boards/nano-r4/image.svg
@@ -1,383 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-r4/interactive/ABX00142-pinout.png b/content/hardware/03.nano/boards/nano-r4/interactive/ABX00142-pinout.png
index 3beadd599e..02d53fe357 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/interactive/ABX00142-pinout.png and b/content/hardware/03.nano/boards/nano-r4/interactive/ABX00142-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-1.png
index 2fa8ac1b87..0bee038805 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-2.png
index adf49695dd..38ab0adec9 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-3.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-3.png
index 53c4c493ab..bb9aa12932 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-3.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/analog-3.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/boot-pin.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/boot-pin.png
index 2b4cf8e63d..a98031357d 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/boot-pin.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/boot-pin.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/dac-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/dac-1.png
index 1d84eafbe2..8e3a473b22 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/dac-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/dac-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/dac-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/dac-2.png
index 9e04b84f96..d688357f26 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/dac-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/dac-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/digital-pins-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/digital-pins-1.png
index 9858ceb705..3d720b3b6d 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/digital-pins-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/digital-pins-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/digital-pins-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/digital-pins-2.png
index 27d56c4023..a10b564866 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/digital-pins-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/digital-pins-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/eeprom-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/eeprom-1.png
index e794516a67..dd0bf3e107 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/eeprom-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/eeprom-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/front-page.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/front-page.png
index be24874920..7db2c59ab1 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/front-page.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/front-page.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hero-banner.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hero-banner.png
index 7889ae2b33..85290136ca 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hero-banner.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-1.png
index 776782987d..a6226edca1 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-2.gif b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-2.gif
index f426b8c4cf..242557714e 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-2.gif and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-2.gif differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-3.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-3.png
index 00401d0d99..fd13cbe103 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-3.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-3.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-4.gif b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-4.gif
index 1aabde8b3d..ac3c34bf54 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-4.gif and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/hid-4.gif differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/i2c-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/i2c-1.png
index a29dd5c5b7..473aa23c3d 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/i2c-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/i2c-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/i2c-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/i2c-2.png
index dc4bd35dde..13d333a3c3 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/i2c-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/i2c-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/interrupt-pins-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/interrupt-pins-1.png
index 0ce97ad825..81741bddd7 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/interrupt-pins-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/interrupt-pins-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/interrupt-pins-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/interrupt-pins-2.png
index 474d3f6206..95b721185c 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/interrupt-pins-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/interrupt-pins-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/opamp-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/opamp-1.png
index 4a205f202b..ea354f393c 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/opamp-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/opamp-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/opamp-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/opamp-2.png
index c629894316..eb4cef725c 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/opamp-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/opamp-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-1.gif b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-1.gif
index 740cba09e2..7f3da8f95a 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-1.gif and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-1.gif differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-2.png
index 92792674fe..2427b36f1c 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-3.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-3.png
index 5069938465..f4c9cfb42e 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-3.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/pwm-3.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwicc-modulino-serial-monitor.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwicc-modulino-serial-monitor.png
index fc2fb39fc6..3dbca5f9c8 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwicc-modulino-serial-monitor.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwicc-modulino-serial-monitor.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwiic-connection.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwiic-connection.png
index 10ad948b3e..6d9fc64f78 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwiic-connection.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwiic-connection.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwiic-connector.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwiic-connector.png
index 9180208f01..3e6d3f6832 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwiic-connector.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/qwiic-connector.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/rtc-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/rtc-1.png
index f664627f1d..718ea2e4be 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/rtc-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/rtc-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/simple-pinout.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/simple-pinout.png
index 3beadd599e..02d53fe357 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/simple-pinout.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/simple-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/spi-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/spi-1.png
index a841dfee50..6fb08a4ded 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/spi-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/spi-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/spi-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/spi-2.png
index 2293cd0a93..32478c1cfc 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/spi-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/spi-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/uart-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/uart-1.png
index 77cff1d231..d70a5cfaf5 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/uart-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/uart-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/uart-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/uart-2.png
index 169a75a736..79a015eff0 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/uart-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/uart-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/unboxing.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/unboxing.png
index d6ad44c1a3..ad6777c477 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/unboxing.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/unboxing.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-1.png
index 7688fba83d..80dda27c84 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-10.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-10.png
index 858cb7567d..791c78a83d 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-10.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-10.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-12.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-12.png
index 40378270ca..42ae55524a 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-12.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-12.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-2.png
index 939af0dfc8..8818213886 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-3.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-3.png
index 67312c9fec..8bd0445cb7 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-3.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-3.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-4.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-4.png
index f0ba8dddb5..bf3bec5950 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-4.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-4.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-5.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-5.png
index 6cc6308f8a..9473307bcf 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-5.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-5.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-6.gif b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-6.gif
index ee6f8f96ac..3496f718ea 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-6.gif and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-6.gif differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-7.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-7.png
index b25ffd56cc..237192f4fc 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-7.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-7.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-8.png b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-8.png
index 9c38d1ee23..e96d376ec8 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-8.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-8.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-9.gif b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-9.gif
index d7bd06124d..f9a68b5df0 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-9.gif and b/content/hardware/03.nano/boards/nano-r4/tutorials/01.user-manual/assets/user-manual-9.gif differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/anomaly-detection.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/anomaly-detection.png
index 7a51621cce..0803c1549f 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/anomaly-detection.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/anomaly-detection.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/anomaly-explorer.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/anomaly-explorer.png
index 52d5933c60..e0b482f406 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/anomaly-explorer.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/anomaly-explorer.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/classifier.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/classifier.png
index e4a2885c24..4805e1bf13 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/classifier.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/classifier.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/daemon-version.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/daemon-version.png
index 6f0a0b5624..29998ba9ef 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/daemon-version.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/daemon-version.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/data-collection.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/data-collection.png
index 5b362f9dae..7ca5941bb7 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/data-collection.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/data-collection.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/data-forwarder-configuration.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/data-forwarder-configuration.png
index f59fd5634b..7041b68ff7 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/data-forwarder-configuration.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/data-forwarder-configuration.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/download-button.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/download-button.png
index 4ff5d7f9e6..87baf88223 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/download-button.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/download-button.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/example-sketch-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/example-sketch-1.png
index 9618358881..5c46b6db88 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/example-sketch-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/example-sketch-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/feature-explorer.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/feature-explorer.png
index 168cb5f0d0..5695941716 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/feature-explorer.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/feature-explorer.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hardware-setup-adxl335.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hardware-setup-adxl335.png
index 5ef14052eb..3785f230f4 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hardware-setup-adxl335.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hardware-setup-adxl335.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hardware-setup-modulino.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hardware-setup-modulino.png
index f031a63c4a..5a36b0ac84 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hardware-setup-modulino.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hardware-setup-modulino.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hero-banner.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hero-banner.png
index 2761cbb97c..506782cfec 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hero-banner.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/impulse-design.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/impulse-design.png
index ccfd3e5f8a..e54f9140d9 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/impulse-design.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/impulse-design.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/ml-monitor-output.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/ml-monitor-output.png
index e2924f346a..a28ca54350 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/ml-monitor-output.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/ml-monitor-output.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/model-deployment.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/model-deployment.png
index d938973ebc..a063d64517 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/model-deployment.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/model-deployment.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/model-validation.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/model-validation.png
index 9c0c2ec197..ce2ea3739d 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/model-validation.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/model-validation.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/new-project.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/new-project.png
index 10a628011c..8560e50e52 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/new-project.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/new-project.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/spectral-features.png b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/spectral-features.png
index fa77ac22cf..939a468b1c 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/spectral-features.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/02.anomaly-detection-application-note/assets/spectral-features.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/boot-gnd.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/boot-gnd.png
index 8b0052fc92..458919738b 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/boot-gnd.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/boot-gnd.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/boot-pin.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/boot-pin.png
index 2b4cf8e63d..a98031357d 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/boot-pin.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/boot-pin.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/bootloader-raw-file.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/bootloader-raw-file.png
index a8f24a1643..906f9c8670 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/bootloader-raw-file.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/bootloader-raw-file.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/downloads-section.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/downloads-section.png
index 9ca809c7ee..e985efa5c4 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/downloads-section.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/downloads-section.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/hero-banner.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/hero-banner.png
index 6ab3dd2a43..c2ca2b7632 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/hero-banner.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/new-project-dialog-box.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/new-project-dialog-box.png
index 945523fe89..7b95e0590e 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/new-project-dialog-box.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/new-project-dialog-box.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/new-project-menu.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/new-project-menu.png
index f70384e1ee..8345cec1d5 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/new-project-menu.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/new-project-menu.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-1.png
index aec8fdd89d..f7550542f1 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-2.png
index 32362fecef..6a8dc034b6 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-3.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-3.png
index cbb7fd9ed9..3a3ec4fc87 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-3.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/renesas-flash-programmer-tool-3.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/upload-verify.png b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/upload-verify.png
index 167fc6446d..9a9a2b88c0 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/upload-verify.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/03.bootloader-flashing/assets/upload-verify.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/hero-banner.png b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/hero-banner.png
index 0dfd095893..78e51e4a12 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/hero-banner.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/hero-banner.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/serial-monitor-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/serial-monitor-1.png
index b5be688525..f0e3da27ec 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/serial-monitor-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/serial-monitor-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/serial-monitor-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/serial-monitor-2.png
index 20368800c5..9e80b44350 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/serial-monitor-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/serial-monitor-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/test-circuit-1.png b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/test-circuit-1.png
index d717f006de..4107577acf 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/test-circuit-1.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/test-circuit-1.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/test-circuit-2.png b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/test-circuit-2.png
index 9cfa48b28e..03ecb49331 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/test-circuit-2.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/test-circuit-2.png differ
diff --git a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/upload-verify.png b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/upload-verify.png
index 167fc6446d..9a9a2b88c0 100644
Binary files a/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/upload-verify.png and b/content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/assets/upload-verify.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/featured.jpg b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/featured.jpg
index 7c21c5a544..795040d772 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/featured.jpg and b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/featured.jpg differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BlockDiagram.svg b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BlockDiagram.svg
index a7dc826964..39f3a95cc0 100644
--- a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BlockDiagram.svg
+++ b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BlockDiagram.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BoardTopologyBack.png b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BoardTopologyBack.png
index ad29614cc8..9f00f75ec6 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BoardTopologyBack.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BoardTopologyBack.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BoardTopologyTop.png b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BoardTopologyTop.png
index e0040688fc..d6c2f63c74 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BoardTopologyTop.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040BoardTopologyTop.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040Mechanical.png b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040Mechanical.png
index cc5beb8431..bb17f86e3b 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040Mechanical.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040Mechanical.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040PowerTree.png b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040PowerTree.png
index 313b96f4c6..29e45ab40a 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040PowerTree.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/datasheet/assets/nanoRP2040PowerTree.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/downloads/preview.png b/content/hardware/03.nano/boards/nano-rp2040-connect/downloads/preview.png
index eee8ff83a5..84b0a87270 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/downloads/preview.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/downloads/preview.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/image.svg b/content/hardware/03.nano/boards/nano-rp2040-connect/image.svg
index 4f8ca4abe9..23bd744216 100644
--- a/content/hardware/03.nano/boards/nano-rp2040-connect/image.svg
+++ b/content/hardware/03.nano/boards/nano-rp2040-connect/image.svg
@@ -1,631 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/interactive/ABX00053-pinout.png b/content/hardware/03.nano/boards/nano-rp2040-connect/interactive/ABX00053-pinout.png
index e9f998cb1e..85bc4ffb80 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/interactive/ABX00053-pinout.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/interactive/ABX00053-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/5V-PIN-VUSB.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/5V-PIN-VUSB.png
index 7cf0ddf63d..d47985788e 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/5V-PIN-VUSB.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/5V-PIN-VUSB.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/DRAG-DROP-NANORP2040CONNECT.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/DRAG-DROP-NANORP2040CONNECT.png
index d8682229a3..072d535d14 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/DRAG-DROP-NANORP2040CONNECT.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/DRAG-DROP-NANORP2040CONNECT.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/MP34DT06JTR-NANORP2040CONNECT.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/MP34DT06JTR-NANORP2040CONNECT.png
index d93d14ae84..025bc3d60d 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/MP34DT06JTR-NANORP2040CONNECT.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/MP34DT06JTR-NANORP2040CONNECT.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/NINA-W102-NANORP2040CONNECT.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/NINA-W102-NANORP2040CONNECT.png
index 6f5962af33..a19fd6e77c 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/NINA-W102-NANORP2040CONNECT.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/NINA-W102-NANORP2040CONNECT.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/RGB-PIXEL-NANORP2040CONNECT.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/RGB-PIXEL-NANORP2040CONNECT.png
index 59f6e3da25..b6b9113d91 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/RGB-PIXEL-NANORP2040CONNECT.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/RGB-PIXEL-NANORP2040CONNECT.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/SHORT-REC-NANORP2040CONNECT.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/SHORT-REC-NANORP2040CONNECT.png
index cf3ad3c64e..f7ae77b9c7 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/SHORT-REC-NANORP2040CONNECT.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/SHORT-REC-NANORP2040CONNECT.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/hero.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/hero.png
index 2838a74694..bbfd945c0a 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/hero.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/hero.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/pinout.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/pinout.png
index e9f998cb1e..85bc4ffb80 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/pinout.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/rp2040-imu-basics-img-02.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/rp2040-imu-basics-img-02.png
index b5b97bb2e6..1559c40bb4 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/rp2040-imu-basics-img-02.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/assets/rp2040-imu-basics-img-02.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-01.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-01.png
index a20a02b4e0..8f6dd67c21 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-01.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-01.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-02.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-02.png
index 8fd6974fed..44a8964e4e 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-02.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-02.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-04.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-04.png
index 741535c4d3..2358c5ae74 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-04.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-04.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-05.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-05.png
index 378d392d8d..a22cd86999 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-05.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ap-web-server-rgb/assets/rp2040-ap-mode-img-05.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-01.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-01.png
index 8026b826f9..83757d76d4 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-01.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-01.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-02.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-02.png
index a02bc047e0..513c1921a8 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-02.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-02.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-03.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-03.png
index 2442f0eb99..4afac3e530 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-03.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-03.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-04-new.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-04-new.png
index 10734ecf19..3a2b696059 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-04-new.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-ble-device-to-device/assets/rp2040-bluetooth-img-04-new.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-board-discovered.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-board-discovered.png
index 8cff85c5a3..2713d8f210 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-board-discovered.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-board-discovered.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-chromestore.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-chromestore.png
index 35521c5883..4ff8fd6e0d 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-chromestore.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-chromestore.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-connect-board.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-connect-board.png
index 9a8718a633..d6674a7194 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-connect-board.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-connect-board.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-mass-storage.gif b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-mass-storage.gif
index afe113ba46..bc65778ffb 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-mass-storage.gif and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-chromebook-upload/assets/rp2040-chromebook-mass-storage.gif differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/SHORT-REC-NANORP2040CONNECT.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/SHORT-REC-NANORP2040CONNECT.png
index cf3ad3c64e..f7ae77b9c7 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/SHORT-REC-NANORP2040CONNECT.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/SHORT-REC-NANORP2040CONNECT.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/storage-device.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/storage-device.png
index c47e414586..72e21aa692 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/storage-device.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/storage-device.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/thonny-select-interpreter.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/thonny-select-interpreter.png
index de5862f2c3..0c076b3286 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/thonny-select-interpreter.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/thonny-select-interpreter.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/thonny-terminal.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/thonny-terminal.png
index 62cdbfbea3..4c1cbd5718 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/thonny-terminal.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-data-logger/assets/thonny-terminal.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-advanced-activity.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-advanced-activity.png
index d23b9e8f0e..24893f3a05 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-advanced-activity.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-advanced-activity.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-basics-img-01.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-basics-img-01.png
index 921956804d..0217b42711 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-basics-img-01.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-basics-img-01.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-basics-img-02.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-basics-img-02.png
index b5b97bb2e6..1559c40bb4 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-basics-img-02.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-advanced/assets/rp2040-imu-basics-img-02.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-01.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-01.png
index 921956804d..0217b42711 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-01.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-01.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-02.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-02.png
index b5b97bb2e6..1559c40bb4 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-02.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-02.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-03.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-03.png
index eaf8b64722..dc25c339bb 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-03.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-03.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-04.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-04.png
index 9802c48610..9bde609e51 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-04.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-04.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-05.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-05.png
index e2cabbb9b9..6abff13062 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-05.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-imu-basics/assets/rp2040-imu-basics-img-05.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/boardfound.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/boardfound.png
index 16bdba66cd..abe128c4af 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/boardfound.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/boardfound.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/circuit.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/circuit.png
index 0e07bfb50c..e1fb67ca84 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/circuit.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/circuit.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/create-dashboard.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/create-dashboard.png
index 0152893a01..4db3b0731a 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/create-dashboard.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/create-dashboard.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/create-widgets.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/create-widgets.png
index 296ab3bde1..8c1e132155 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/create-widgets.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/create-widgets.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/dashboard-final.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/dashboard-final.png
index 1d00c756e6..eb4a5208cd 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/dashboard-final.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/dashboard-final.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/devices.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/devices.png
index 8798dc8d7a..c754ea80d0 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/devices.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/devices.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/final-thing.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/final-thing.png
index 6c2c856602..503cea6f04 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/final-thing.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/final-thing.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/nano-board.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/nano-board.png
index 70deaa2c03..ed1e3dde04 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/nano-board.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/nano-board.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/rp2040-cloud.gif b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/rp2040-cloud.gif
index fe82876e03..413947988c 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/rp2040-cloud.gif and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/rp2040-cloud.gif differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/thing.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/thing.png
index cc7d6d464a..21a5e555c8 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/thing.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/thing.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/variables.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/variables.png
index ede8d39d2a..148e209132 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/variables.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-iot-cloud/assets/variables.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-00.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-00.png
index 19f3829341..ffc1a754b1 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-00.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-00.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-01.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-01.png
index 2c019e39ff..25c8b8c449 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-01.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-01.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-02.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-02.png
index 82c4aaa025..c85e12af07 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-02.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-02.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-03.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-03.png
index 8527a6555b..c222efd12a 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-03.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-03.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-04.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-04.png
index 85593bf29e..d1298e6ff8 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-04.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/assets/rp2040-microphone-img-04.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-imu-basics-img-02.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-imu-basics-img-02.png
index b5b97bb2e6..1559c40bb4 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-imu-basics-img-02.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-imu-basics-img-02.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img02.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img02.png
index 2cbd65da02..ae06c5758f 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img02.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img02.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img03.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img03.png
index b86d619d62..ffeb7206c4 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img03.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img03.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img04.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img04.png
index 4033082fc5..77fa6ec646 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img04.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img04.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img05.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img05.png
index f5f9df0395..ebc5612536 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img05.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-mlc/assets/rp2040-openmv-mlc_img05.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/SHORT-REC-NANORP2040CONNECT.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/SHORT-REC-NANORP2040CONNECT.png
index cf3ad3c64e..f7ae77b9c7 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/SHORT-REC-NANORP2040CONNECT.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/SHORT-REC-NANORP2040CONNECT.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_board_connected.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_board_connected.png
index db52981e7b..9d2bf438a7 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_board_connected.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_board_connected.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_click_connect.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_click_connect.png
index a66ad5e267..69cebbd99f 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_click_connect.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_click_connect.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_firmware_install.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_firmware_install.png
index b59abd8269..8fc3d5efb7 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_firmware_install.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_firmware_install.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_fwupdate.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_fwupdate.png
index 53440a3603..99f1a27d0b 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_fwupdate.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_fwupdate.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_open_ide.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_open_ide.png
index a7a9e8d496..ec559d91a0 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_open_ide.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-openmv-setup/assets/rp2040_omv_open_ide.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-01.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-01.png
index a20a02b4e0..8f6dd67c21 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-01.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-01.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-02.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-02.png
index 69727dba16..6c2a906480 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-02.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-02.png differ
diff --git a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-03.png b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-03.png
index 378d392d8d..a22cd86999 100644
Binary files a/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-03.png and b/content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/assets/rp2040-web-server-img-03.png differ
diff --git a/content/hardware/03.nano/boards/nano/datasheet/assets/nano_block_diagram.png b/content/hardware/03.nano/boards/nano/datasheet/assets/nano_block_diagram.png
index 4448523b89..7eb6ee65df 100644
Binary files a/content/hardware/03.nano/boards/nano/datasheet/assets/nano_block_diagram.png and b/content/hardware/03.nano/boards/nano/datasheet/assets/nano_block_diagram.png differ
diff --git a/content/hardware/03.nano/boards/nano/datasheet/assets/nano_connector_pinout.png b/content/hardware/03.nano/boards/nano/datasheet/assets/nano_connector_pinout.png
index 464e8b9701..eefb4cce2a 100644
Binary files a/content/hardware/03.nano/boards/nano/datasheet/assets/nano_connector_pinout.png and b/content/hardware/03.nano/boards/nano/datasheet/assets/nano_connector_pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano/datasheet/assets/nano_mechanical_dimension.png b/content/hardware/03.nano/boards/nano/datasheet/assets/nano_mechanical_dimension.png
index 7614d8be20..6ab5e64609 100644
Binary files a/content/hardware/03.nano/boards/nano/datasheet/assets/nano_mechanical_dimension.png and b/content/hardware/03.nano/boards/nano/datasheet/assets/nano_mechanical_dimension.png differ
diff --git a/content/hardware/03.nano/boards/nano/datasheet/assets/nano_power_tree.png b/content/hardware/03.nano/boards/nano/datasheet/assets/nano_power_tree.png
index 04819acbde..cc8141b248 100644
Binary files a/content/hardware/03.nano/boards/nano/datasheet/assets/nano_power_tree.png and b/content/hardware/03.nano/boards/nano/datasheet/assets/nano_power_tree.png differ
diff --git a/content/hardware/03.nano/boards/nano/image.svg b/content/hardware/03.nano/boards/nano/image.svg
index b298e6f5a2..5d9fb53a84 100644
--- a/content/hardware/03.nano/boards/nano/image.svg
+++ b/content/hardware/03.nano/boards/nano/image.svg
@@ -1,134 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/boards/nano/interactive/A000005-pinout.png b/content/hardware/03.nano/boards/nano/interactive/A000005-pinout.png
index 464e8b9701..eefb4cce2a 100644
Binary files a/content/hardware/03.nano/boards/nano/interactive/A000005-pinout.png and b/content/hardware/03.nano/boards/nano/interactive/A000005-pinout.png differ
diff --git a/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/install-nano-core.png b/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/install-nano-core.png
index 59770cad11..09b5685c5f 100644
Binary files a/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/install-nano-core.png and b/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/install-nano-core.png differ
diff --git a/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/nano-connected.png b/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/nano-connected.png
index 0eff3f5ad8..6640cfdc15 100644
Binary files a/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/nano-connected.png and b/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/nano-connected.png differ
diff --git a/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/open-ide.png b/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/open-ide.png
index 2add68e55b..29e5fb417a 100644
Binary files a/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/open-ide.png and b/content/hardware/03.nano/boards/nano/tutorials/nano-getting-started/assets/open-ide.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/ASX00061-pinout-v2.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/ASX00061-pinout-v2.png
index d0ea11d6d7..bfb6d2c1da 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/ASX00061-pinout-v2.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/ASX00061-pinout-v2.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/Block_Diagram.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/Block_Diagram.png
index 3586893b6d..cb0f1fb1af 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/Block_Diagram.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/Block_Diagram.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/board-selector.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/board-selector.png
index 477a49e28b..5a2fdfb470 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/board-selector.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/board-selector.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/connectors-rect.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/connectors-rect.png
index e874cb0ede..d206b572e2 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/connectors-rect.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/connectors-rect.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/dimensions-rect.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/dimensions-rect.png
index cbcc884f41..53affe06c0 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/dimensions-rect.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/dimensions-rect.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/grove.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/grove.png
index bbfeba009d..2874c1d432 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/grove.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/grove.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/nano-connector-top.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/nano-connector-top.png
index 0f578e8c6a..15a88008d0 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/nano-connector-top.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/nano-connector-top.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/power-tree.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/power-tree.png
index 217d8f513f..0927cf3c9b 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/power-tree.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/power-tree.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/qwiic.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/qwiic.png
index 3f54d935f4..8e0edde911 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/qwiic.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/qwiic.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/sd.png b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/sd.png
index 6edf269607..1a9ae98a2e 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/sd.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/sd.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/topology.jpg b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/topology.jpg
index 6fd7e832be..6fddecfaf2 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/topology.jpg and b/content/hardware/03.nano/carriers/nano-connector-carrier/datasheet/assets/topology.jpg differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/image.svg b/content/hardware/03.nano/carriers/nano-connector-carrier/image.svg
index 32ea10fe23..467d522c04 100644
--- a/content/hardware/03.nano/carriers/nano-connector-carrier/image.svg
+++ b/content/hardware/03.nano/carriers/nano-connector-carrier/image.svg
@@ -1,3 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/interactive/ASX00061-pinout.png b/content/hardware/03.nano/carriers/nano-connector-carrier/interactive/ASX00061-pinout.png
index d0ea11d6d7..bfb6d2c1da 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/interactive/ASX00061-pinout.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/interactive/ASX00061-pinout.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/ASX00061-pinout-v2.png b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/ASX00061-pinout-v2.png
index d0ea11d6d7..bfb6d2c1da 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/ASX00061-pinout-v2.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/ASX00061-pinout-v2.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/connector-list.png b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/connector-list.png
index 3116d60a4f..4e2327f8f8 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/connector-list.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/connector-list.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/cover.gif b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/cover.gif
index 0df8eeba55..0609a6e985 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/cover.gif and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/cover.gif differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/enclosure-connection.png b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/enclosure-connection.png
index 746a943c66..31771642c6 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/enclosure-connection.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/enclosure-connection.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/enclosure-monitor.png b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/enclosure-monitor.png
index a5a81473d7..df520e7092 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/enclosure-monitor.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/enclosure-monitor.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/grove-01.gif b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/grove-01.gif
index 5c46c637ec..10bed8d2d8 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/grove-01.gif and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/grove-01.gif differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/moduleConnection.png b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/moduleConnection.png
index bf43d6278f..c695118d63 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/moduleConnection.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/moduleConnection.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/movement-connector.png b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/movement-connector.png
index 14bbbff461..251dd03244 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/movement-connector.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/movement-connector.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/movement_monitor.png b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/movement_monitor.png
index b23ee94656..bf774994c1 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/movement_monitor.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/movement_monitor.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/nano-formfactor.png b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/nano-formfactor.png
index 854e0f39f7..c9e6a54bc4 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/nano-formfactor.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/nano-formfactor.png differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/power-switch-01.gif b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/power-switch-01.gif
index 2c5306af1a..1925e7ac40 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/power-switch-01.gif and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/power-switch-01.gif differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/qwiic-01.gif b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/qwiic-01.gif
index 117e0040a3..2d7c403656 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/qwiic-01.gif and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/qwiic-01.gif differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/sd-card-01.gif b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/sd-card-01.gif
index b3c7f70bd6..9d5f2544a3 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/sd-card-01.gif and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/sd-card-01.gif differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/solder-jumper-01.gif b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/solder-jumper-01.gif
index 83e1ea4f63..4c522c7650 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/solder-jumper-01.gif and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/solder-jumper-01.gif differ
diff --git a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/teamometer.png b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/teamometer.png
index 8d068565f3..ba4ff94dfc 100644
Binary files a/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/teamometer.png and b/content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/assets/teamometer.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/image.svg b/content/hardware/03.nano/carriers/nano-motor-carrier/image.svg
index e2be8e82dc..10fafdba64 100644
--- a/content/hardware/03.nano/carriers/nano-motor-carrier/image.svg
+++ b/content/hardware/03.nano/carriers/nano-motor-carrier/image.svg
@@ -1,1373 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-01.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-01.png
index bcd0054f0e..a659c8884b 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-01.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-01.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-02.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-02.png
index d191e4917c..798b66952e 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-02.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-02.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-03.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-03.png
index 3958bc1cea..05b234bd43 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-03.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-03.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-04.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-04.png
index 5cc2a7d3b0..b1a21d3d7a 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-04.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-04.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-05.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-05.png
index 4459fb3aef..cbf2ba2e18 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-05.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-05.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-06.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-06.png
index 35336aba5c..1a83bfe9b1 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-06.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-06.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-07.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-07.png
index 0823c7814a..2800fd6fe3 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-07.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-07.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-08.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-08.png
index 2eb458c40b..0df3c32dd0 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-08.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-08.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-09.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-09.png
index 855de890e4..b0482ccb8a 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-09.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-09.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-10.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-10.png
index 71c12f923a..51e5b06f49 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-10.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-10.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-11.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-11.png
index e20f0bb8e9..5116d4dfa4 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-11.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-11.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-12.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-12.png
index 219d3a6276..63caa586af 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-12.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-matlab-wifi-led/assets/nanoMatlabWiFiLED-12.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Battery-Block.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Battery-Block.png
index ad0a9909f4..127c5ac129 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Battery-Block.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Battery-Block.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Constant-Block.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Constant-Block.png
index 1061e12f3d..e238c1636e 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Constant-Block.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Constant-Block.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Dashboard-Lamp.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Dashboard-Lamp.png
index 8c2c7a6aa4..2ab559d24f 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Dashboard-Lamp.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Dashboard-Lamp.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Digital-Output-Block.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Digital-Output-Block.png
index ae59cd79d9..ccdb28ae1e 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Digital-Output-Block.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Digital-Output-Block.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Display-Block.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Display-Block.png
index d84522b519..268ffb3786 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Display-Block.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Display-Block.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Gain-Block.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Gain-Block.png
index 460ffd3084..9eb4b5d270 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Gain-Block.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Gain-Block.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Manual-Switch.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Manual-Switch.png
index 4a2ffbb855..7e4df861a7 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Manual-Switch.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Manual-Switch.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Pulse-Generator-Block.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Pulse-Generator-Block.png
index d21185620e..59564bbb20 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Pulse-Generator-Block.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Pulse-Generator-Block.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Scope-Block.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Scope-Block.png
index 8ee451dcc8..9a796527de 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Scope-Block.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Add-Scope-Block.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Blank-Model.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Blank-Model.png
index 9ca15011aa..d857d604cb 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Blank-Model.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Blank-Model.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Change-Pin-Number.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Change-Pin-Number.png
index 9e26d278b5..de270b062f 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Change-Pin-Number.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Change-Pin-Number.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Connect-Lamp.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Connect-Lamp.png
index e986dac3f3..dc7fe74913 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Connect-Lamp.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Connect-Lamp.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Constant-Block-Zero.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Constant-Block-Zero.png
index 63a29fff2c..581245f0e0 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Constant-Block-Zero.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Constant-Block-Zero.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Constant-Manual-Switch-Block-Added.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Constant-Manual-Switch-Block-Added.png
index 0e470b29d0..a5b942da63 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Constant-Manual-Switch-Block-Added.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Constant-Manual-Switch-Block-Added.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Create-Blank-Model.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Create-Blank-Model.png
index f616aa6d51..36ed7fbbf6 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Create-Blank-Model.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Create-Blank-Model.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-D13-LED.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-D13-LED.png
index d191e4917c..798b66952e 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-D13-LED.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-D13-LED.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-ConnectedIO.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-ConnectedIO.png
index 88766932cc..8e45936553 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-ConnectedIO.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-ConnectedIO.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-External-Mode.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-External-Mode.png
index ac79dff91e..74c6d06e48 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-External-Mode.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-External-Mode.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-XCP-on-WiFi.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-XCP-on-WiFi.png
index d568c7aa5f..daf568821b 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-XCP-on-WiFi.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Enable-XCP-on-WiFi.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Gain-Block-Configuration.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Gain-Block-Configuration.png
index 10ee4164e8..f9ae30cf0e 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Gain-Block-Configuration.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Gain-Block-Configuration.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Monitor-And-Tune.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Monitor-And-Tune.png
index 961d2f9b08..9df6f1d0d6 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Monitor-And-Tune.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Monitor-And-Tune.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Open-Model-Settings.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Open-Model-Settings.png
index e51b15db7e..232d62ed48 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Open-Model-Settings.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Open-Model-Settings.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Open-Simulink.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Open-Simulink.png
index 4394e52764..7bf1b99756 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Open-Simulink.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Open-Simulink.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Pulse-Generation-Parameters.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Pulse-Generation-Parameters.png
index 633f36ed90..e51c1a2335 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Pulse-Generation-Parameters.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Pulse-Generation-Parameters.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-Connected-IO.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-Connected-IO.png
index e92f73cf38..69ab90bdf6 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-Connected-IO.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-Connected-IO.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-External-Mode.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-External-Mode.png
index 496d83b509..e25998b341 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-External-Mode.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-External-Mode.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-Simulation-Normal.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-Simulation-Normal.png
index 2b4f406b57..5ca47d0356 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-Simulation-Normal.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Run-Simulation-Normal.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Select-Nano-33-IoT.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Select-Nano-33-IoT.png
index 337abeec9f..250d50a58a 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Select-Nano-33-IoT.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Select-Nano-33-IoT.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Three-Blocks-Connected.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Three-Blocks-Connected.png
index f133c9bc00..c5bac8cd04 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Three-Blocks-Connected.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Three-Blocks-Connected.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-View-Scope-Simulation.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-View-Scope-Simulation.png
index 7a7be24b1a..e74af4450c 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-View-Scope-Simulation.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-View-Scope-Simulation.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Wi-Fi-Credentials.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Wi-Fi-Credentials.png
index ff4bb51cf2..79ec60d4ab 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Wi-Fi-Credentials.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-Wi-Fi-Credentials.png differ
diff --git a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-modes.png b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-modes.png
index 3cb6e9ea48..e6811684c2 100644
Binary files a/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-modes.png and b/content/hardware/03.nano/carriers/nano-motor-carrier/tutorials/nano-simulink-wifi-led/img/nano-Simulink-WiFi-LED-modes.png differ
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/BoardOutline.png b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/BoardOutline.png
index 386dc3ad1f..f72ff1633a 100644
Binary files a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/BoardOutline.png and b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/BoardOutline.png differ
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/featured.png b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/featured.png
index d85d12d7e9..2f8b28079b 100644
Binary files a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/featured.png and b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/featured.png differ
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/topologyBottom.svg b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/topologyBottom.svg
index 3c571f14f2..b2104107ce 100644
--- a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/topologyBottom.svg
+++ b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/topologyBottom.svg
@@ -1,2700 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/topologyTop.svg b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/topologyTop.svg
index a3a826ea8e..57ebe37ccf 100644
--- a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/topologyTop.svg
+++ b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/datasheet/assets/topologyTop.svg
@@ -1,3440 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/image.svg b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/image.svg
index 47723da7a1..fca6383b4f 100644
--- a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/image.svg
+++ b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/image.svg
@@ -1,515 +1 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/hero.png b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/hero.png
index 670ffcc3c1..a3b4ea148e 100644
Binary files a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/hero.png and b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/hero.png differ
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-dht-rp2040.png b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-dht-rp2040.png
index f4f1959cba..80ef7f0607 100644
Binary files a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-dht-rp2040.png and b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-dht-rp2040.png differ
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-proto-area-pic.png b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-proto-area-pic.png
index ec8525af4f..8879141115 100644
Binary files a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-proto-area-pic.png and b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-proto-area-pic.png differ
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-proto-area.png b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-proto-area.png
index 01a82ee43c..a72c03dcef 100644
Binary files a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-proto-area.png and b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-proto-area.png differ
diff --git a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-terminals.png b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-terminals.png
index c587a787e3..76e9ab2d0d 100644
Binary files a/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-terminals.png and b/content/hardware/03.nano/carriers/nano-screw-terminal-adapter/tutorials/getting-started-nano-screw-terminal/assets/nst-terminals.png differ
diff --git a/content/hardware/03.nano/image-480.png b/content/hardware/03.nano/image-480.png
index 6550bd0f95..df9f35c7f0 100644
Binary files a/content/hardware/03.nano/image-480.png and b/content/hardware/03.nano/image-480.png differ
diff --git a/content/hardware/03.nano/image.png b/content/hardware/03.nano/image.png
index 4c13070034..260a83b835 100644
Binary files a/content/hardware/03.nano/image.png and b/content/hardware/03.nano/image.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Block_Diagram.svg b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Block_Diagram.svg
index 284b26b008..ef5d6d0a32 100644
--- a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Block_Diagram.svg
+++ b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Block_Diagram.svg
@@ -1,109 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Mechanical_1.png b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Mechanical_1.png
index 02bf465d4a..64e9f65c20 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Mechanical_1.png and b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Mechanical_1.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Mechanical_2.png b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Mechanical_2.png
index 2536001985..af729b23f4 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Mechanical_2.png and b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Mechanical_2.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Pinout_HDC.png b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Pinout_HDC.png
index 606a951493..3eb27ec539 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Pinout_HDC.png and b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Pinout_HDC.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Pinout_MKR.png b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Pinout_MKR.png
index bf29e9052b..bb42631f59 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Pinout_MKR.png and b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Pinout_MKR.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Power_Tree.svg b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Power_Tree.svg
index c335c11d4f..bf62d3ad09 100644
--- a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Power_Tree.svg
+++ b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Power_Tree.svg
@@ -1,186 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Top_View.png b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Top_View.png
index 6daa95b243..16388afea8 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Top_View.png and b/content/hardware/04.pro/boards/portenta-c33/datasheet/assets/Portenta_C33_Top_View.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/image.svg b/content/hardware/04.pro/boards/portenta-c33/image.svg
index 4d10459447..7c24c3b97b 100644
--- a/content/hardware/04.pro/boards/portenta-c33/image.svg
+++ b/content/hardware/04.pro/boards/portenta-c33/image.svg
@@ -1,10401 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-c33/interactive/ABX00074-pinout.png b/content/hardware/04.pro/boards/portenta-c33/interactive/ABX00074-pinout.png
index eb64362961..7a554224f7 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/interactive/ABX00074-pinout.png and b/content/hardware/04.pro/boards/portenta-c33/interactive/ABX00074-pinout.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_app_cloud_mobile.gif b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_app_cloud_mobile.gif
index 3607b91833..72613f75cf 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_app_cloud_mobile.gif and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_app_cloud_mobile.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_1.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_1.png
index 536487b8a6..94ff762ec6 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_1.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_1.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_2.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_2.png
index 4095baa627..57347ed29d 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_2.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_2.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_3.gif b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_3.gif
index 9ce6059ff3..b699b92731 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_3.gif and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_3.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_4.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_4.png
index 60a90e42db..6a0cf31249 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_4.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_application_4.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_desktop_app.gif b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_desktop_app.gif
index 500e3ecef5..327f3146b0 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_desktop_app.gif and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/C33_desktop_app.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_1.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_1.png
index 59a64236dd..685c876dab 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_1.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_1.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_2.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_2.png
index cc355639a4..29b227c53b 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_2.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_2.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_3.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_3.png
index 4408a49c69..975ee12d33 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_3.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/assets/equation_3.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/hero-banner.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/hero-banner.png
index 5fa5d8b082..849c4b889b 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/hero-banner.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/energy-meter-application-note/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/ABX00074-pinout-HDC.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/ABX00074-pinout-HDC.png
index b353012896..5d1b57aba2 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/ABX00074-pinout-HDC.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/ABX00074-pinout-HDC.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/ABX00074-pinout-MKR.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/ABX00074-pinout-MKR.png
index bf29e9052b..bb42631f59 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/ABX00074-pinout-MKR.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/ABX00074-pinout-MKR.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-1.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-1.png
index 6d580140dc..e49606f7a3 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-1.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-1.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-10.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-10.png
index 944f488afd..5fb413fe58 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-10.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-10.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-11.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-11.png
index 847ef39150..2af4c627d1 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-11.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-11.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-12.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-12.png
index 72493b8beb..cf6bdff7d7 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-12.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-12.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-13.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-13.png
index d564bd23bc..a8e692f547 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-13.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-13.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-14.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-14.png
index 43f4917635..a2efede113 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-14.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-14.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-15.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-15.png
index 82716b0141..6ec9f8792e 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-15.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-15.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-16.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-16.png
index dedfd2af45..06e591d48c 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-16.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-16.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-17.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-17.png
index 56f150ec70..4952b69522 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-17.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-17.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-18.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-18.png
index b19e7d4f58..a1949f4895 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-18.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-18.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-19.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-19.png
index 1fb576378b..cc93c3eb81 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-19.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-19.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-2.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-2.png
index 73ebb02c70..800f3949b5 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-2.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-2.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-20.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-20.png
index 606b5e1b89..d87e2eaa7f 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-20.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-20.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-21.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-21.png
index f2b5c52837..9a29254824 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-21.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-21.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-22.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-22.png
index 1f839d7c03..2e4cdc023a 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-22.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-22.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-23.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-23.png
index 8f42599e9a..d48d48d5a0 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-23.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-23.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-24.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-24.png
index 6ad57acada..7b7272fcc1 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-24.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-24.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-3.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-3.png
index 276d397506..b3423fa139 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-3.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-3.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-4.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-4.png
index a175e89dd2..a5a4d7c077 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-4.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-4.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-5.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-5.png
index 8250ec04d4..21168d5d71 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-5.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-5.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-6.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-6.png
index 178fefb3f2..8239ace324 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-6.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-6.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-7.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-7.png
index 64b8b92ab5..c240b6f2b9 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-7.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-7.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-8.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-8.png
index 7e7b409a17..a9f6a4e351 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-8.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-8.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-9.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-9.png
index dffe0066c8..49e1697910 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-9.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-9.png differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-1.gif b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-1.gif
index 6c1c797bc1..cfff6bef0a 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-1.gif and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-1.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-2.gif b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-2.gif
index 4fb4fffd8e..b7593a3b97 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-2.gif and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-2.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-3.gif b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-3.gif
index 3ab95f0170..280b2c631f 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-3.gif and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/assets/user-manual-gif-3.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/hero-banner.png b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/hero-banner.png
index 8f5a7db24a..74057d16d2 100644
Binary files a/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/hero-banner.png and b/content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7-lite-connected/image.svg b/content/hardware/04.pro/boards/portenta-h7-lite-connected/image.svg
index 020a8e474e..49f3c1ea34 100644
--- a/content/hardware/04.pro/boards/portenta-h7-lite-connected/image.svg
+++ b/content/hardware/04.pro/boards/portenta-h7-lite-connected/image.svg
@@ -1,526 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7-lite-connected/interactive/ABX00042-pinout.png b/content/hardware/04.pro/boards/portenta-h7-lite-connected/interactive/ABX00042-pinout.png
index e5c0cd80ca..0897ced317 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7-lite-connected/interactive/ABX00042-pinout.png and b/content/hardware/04.pro/boards/portenta-h7-lite-connected/interactive/ABX00042-pinout.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7-lite/image.svg b/content/hardware/04.pro/boards/portenta-h7-lite/image.svg
index 020a8e474e..49f3c1ea34 100644
--- a/content/hardware/04.pro/boards/portenta-h7-lite/image.svg
+++ b/content/hardware/04.pro/boards/portenta-h7-lite/image.svg
@@ -1,526 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7-lite/interactive/ABX00042-pinout.png b/content/hardware/04.pro/boards/portenta-h7-lite/interactive/ABX00042-pinout.png
index e5c0cd80ca..0897ced317 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7-lite/interactive/ABX00042-pinout.png and b/content/hardware/04.pro/boards/portenta-h7-lite/interactive/ABX00042-pinout.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/collectiveH7_boardTopology_top_80.png b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/collectiveH7_boardTopology_top_80.png
index 04951d5d2c..e719777d2c 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/collectiveH7_boardTopology_top_80.png and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/collectiveH7_boardTopology_top_80.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/featured.png b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/featured.png
index 56e5ae2ca1..3277a93e53 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/featured.png and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/featured.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7.jpg b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7.jpg
index 60dea70049..3d14dc7c1f 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7.jpg and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7.jpg differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_PinoutUSB-C.png b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_PinoutUSB-C.png
index 944c909f3d..cfcde041bc 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_PinoutUSB-C.png and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_PinoutUSB-C.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_blockDiagram.svg b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_blockDiagram.svg
index 59d3e827ca..c4b8d7ce54 100644
--- a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_blockDiagram.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_blockDiagram.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_connectors_bot.png b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_connectors_bot.png
index 39747e1313..c29eeb5ab3 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_connectors_bot.png and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_connectors_bot.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_connectors_top.png b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_connectors_top.png
index 78479baf3c..85fa152d18 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_connectors_top.png and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_connectors_top.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_higDensity_pinOut.png b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_higDensity_pinOut.png
index 26ebe98b6d..076aede037 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_higDensity_pinOut.png and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_higDensity_pinOut.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_mkr_pinouts.png b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_mkr_pinouts.png
index e5c0cd80ca..0897ced317 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_mkr_pinouts.png and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_mkr_pinouts.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_mounting.png b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_mounting.png
index c3a9055c02..e2cbff36d9 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_mounting.png and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_mounting.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_outline.png b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_outline.png
index 437d3d0f78..bc000720e8 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_outline.png and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7_outline.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7lite.jpg b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7lite.jpg
index 46ce5ca090..bbfdb48882 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7lite.jpg and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7lite.jpg differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7liteConnected.jpg b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7liteConnected.jpg
index e26e7387cd..3f6d542c8f 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7liteConnected.jpg and b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7liteConnected.jpg differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7ptree.svg b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7ptree.svg
index c5d78519ac..d263c42f86 100644
--- a/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7ptree.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/datasheet/assets/portentaH7ptree.svg
@@ -1,184 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/image.svg b/content/hardware/04.pro/boards/portenta-h7/image.svg
index 020a8e474e..49f3c1ea34 100644
--- a/content/hardware/04.pro/boards/portenta-h7/image.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/image.svg
@@ -1,526 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/interactive/ABX00042-pinout.png b/content/hardware/04.pro/boards/portenta-h7/interactive/ABX00042-pinout.png
index e5c0cd80ca..0897ced317 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/interactive/ABX00042-pinout.png and b/content/hardware/04.pro/boards/portenta-h7/interactive/ABX00042-pinout.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_arduino_library.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_arduino_library.png
index c32cd0a36c..604f8254d2 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_arduino_library.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_arduino_library.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_basic_setup.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_basic_setup.svg
index ca5a43247a..0290ab3507 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_basic_setup.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_basic_setup.svg
@@ -1,486 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_configuration.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_configuration.svg
index 0ebea59941..ba645e1e79 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_configuration.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_configuration.svg
@@ -1,1143 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_cover.svg
index 241dfe7de9..9ad010a368 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_cover.svg
@@ -1,538 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_download_nrfapp.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_download_nrfapp.png
index 18ecce2528..f5b370c5b4 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_download_nrfapp.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_download_nrfapp.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_nrf_connect.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_nrf_connect.png
index 3c68ea1b70..16bf8a3db4 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_nrf_connect.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_nrf_connect.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_select_board_h7.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_select_board_h7.png
index b70feb48ae..dd69ac315e 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_select_board_h7.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_select_board_h7.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_select_port.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_select_port.png
index 3034b78e02..52c9fd6d23 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_select_port.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/ble-connectivity/assets/por_ard_ble_select_port.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_basic_setup.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_basic_setup.svg
index ca5a43247a..6981e20c6a 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_basic_setup.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_basic_setup.svg
@@ -1,486 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_connect_monitor.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_connect_monitor.svg
index f04b42bc1e..39bf8dcffb 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_connect_monitor.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_connect_monitor.svg
@@ -1,558 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_cover.svg
index b1959b7c42..c395229454 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_cover.svg
@@ -1,564 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_select_library.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_select_library.png
index 432834bd55..7e9a0c9282 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_select_library.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_select_library.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_tutorial_steps.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_tutorial_steps.svg
index fc49c878c2..a562b5eb5a 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_tutorial_steps.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/creating-gui-with-lvgl/assets/por_ard_lvgl_tutorial_steps.svg
@@ -1,656 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_cover.svg
index e05df3a190..e5c30308e0 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_cover.svg
@@ -1,673 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_m4_m7_architectures.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_m4_m7_architectures.svg
index be601ffcf8..545b20ede2 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_m4_m7_architectures.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_m4_m7_architectures.svg
@@ -1,157 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_m4_m7_flash_memory.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_m4_m7_flash_memory.svg
index 39f824a503..2a144cb16a 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_m4_m7_flash_memory.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_m4_m7_flash_memory.svg
@@ -1,104 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_tutorial_overview.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_tutorial_overview.svg
index 05b8df43e7..7f2292cb5d 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_tutorial_overview.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_tutorial_overview.svg
@@ -1,1322 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_upload_code_m4.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_upload_code_m4.png
index 398c713233..66fcbc926c 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_upload_code_m4.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_upload_code_m4.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_upload_code_m7.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_upload_code_m7.png
index 6572431d58..64803b26d0 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_upload_code_m7.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/dual-core-processing/assets/por_ard_dcp_upload_code_m7.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/flash-optimized-key-value-store/assets/por_ard_block_device_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/flash-optimized-key-value-store/assets/por_ard_block_device_cover.svg
index 1b9f76b0f8..b43ada2a12 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/flash-optimized-key-value-store/assets/por_ard_block_device_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/flash-optimized-key-value-store/assets/por_ard_block_device_cover.svg
@@ -1,543 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_board_connected.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_board_connected.png
index 5b55ac9c76..c31fa4ecd9 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_board_connected.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_board_connected.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_click_connect.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_click_connect.png
index 3aba99a990..43ec2cd88f 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_click_connect.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_click_connect.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_firmware_updater.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_firmware_updater.png
index 0c388077d0..194b0c3a6d 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_firmware_updater.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_firmware_updater.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_gs_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_gs_cover.svg
index 1904a2639b..36be014995 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_gs_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_gs_cover.svg
@@ -1,883 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_open_ide.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_open_ide.png
index 8bbb9a3496..b4c05c242e 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_open_ide.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_open_ide.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_reset_firmware.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_reset_firmware.png
index 8038d0676f..53d6697d89 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_reset_firmware.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/getting-started-openmv-micropython/assets/por_openmv_reset_firmware.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_board_info.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_board_info.png
index 386a29e1c6..348677362b 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_board_info.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_board_info.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_board_sn.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_board_sn.png
index 1d6c77a35c..6fba0121a4 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_board_sn.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_board_sn.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_cover.svg
index d0610817fa..7b8d6def07 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_cover.svg
@@ -1,295 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_elf_file_selection.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_elf_file_selection.png
index 5e4de0d466..09dbb4c1cd 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_elf_file_selection.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_elf_file_selection.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_files.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_files.svg
index c01e27a3d3..9a6844e1cb 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_files.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_files.svg
@@ -1,310 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_license_state.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_license_state.png
index cccb0ddb17..bce3d7239d 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_license_state.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_license_state.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_main_screen.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_main_screen.png
index cf0d15c1e9..324cecf713 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_main_screen.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_main_screen.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_register.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_register.png
index 4920355290..2e7a5ed72e 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_register.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/lauterbach-debugger/assets/por_ard_trace32_register.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/openmv-cheat-sheet/assets/ABX00042-pinout.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/openmv-cheat-sheet/assets/ABX00042-pinout.png
index 9b58afcaa7..4f0da9991a 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/openmv-cheat-sheet/assets/ABX00042-pinout.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/openmv-cheat-sheet/assets/ABX00042-pinout.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/openmv-cheat-sheet/assets/ABX00042.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/openmv-cheat-sheet/assets/ABX00042.png
index 679cb14d6e..c212bc0e57 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/openmv-cheat-sheet/assets/ABX00042.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/openmv-cheat-sheet/assets/ABX00042.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/binary_export.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/binary_export.png
index b5dd1e06cb..f6f6ac166a 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/binary_export.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/binary_export.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_board_selection.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_board_selection.png
index 955c646434..8da42a3872 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_board_selection.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_board_selection.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_ota_blink_cycle.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_ota_blink_cycle.svg
index 82dd409be3..841dbb6f10 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_ota_blink_cycle.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_ota_blink_cycle.svg
@@ -1,500 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_plus_vision_shield.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_plus_vision_shield.svg
index 37cf971641..2994906c1d 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_plus_vision_shield.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_h7_plus_vision_shield.svg
@@ -1,1314 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_ota_qspi_result.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_ota_qspi_result.png
index d9c86afc79..275977b69d 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_ota_qspi_result.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_ota_qspi_result.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_ota_sd_result.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_ota_sd_result.png
index 9c0bcce6fc..cadf59d49a 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_ota_sd_result.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/assets/portenta_ota_sd_result.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/reading-writing-flash-memory/assets/por_ar_flash_memory.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/reading-writing-flash-memory/assets/por_ar_flash_memory.svg
index 2c57835332..a436b6d112 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/reading-writing-flash-memory/assets/por_ar_flash_memory.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/reading-writing-flash-memory/assets/por_ar_flash_memory.svg
@@ -1,23 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/reading-writing-flash-memory/assets/por_ard_block_device_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/reading-writing-flash-memory/assets/por_ard_block_device_cover.svg
index 1f958fcfd1..dc3fd9df13 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/reading-writing-flash-memory/assets/por_ard_block_device_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/reading-writing-flash-memory/assets/por_ard_block_device_cover.svg
@@ -1,543 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/secure-boot/assets/qspi-format.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/secure-boot/assets/qspi-format.png
index b020477fb6..e452a6f49d 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/secure-boot/assets/qspi-format.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/secure-boot/assets/qspi-format.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/secure-boot/assets/sketch.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/secure-boot/assets/sketch.png
index b0d1282772..98a26f9395 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/secure-boot/assets/sketch.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/secure-boot/assets/sketch.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_basic_setup.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_basic_setup.svg
index ca5a43247a..0290ab3507 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_basic_setup.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_basic_setup.svg
@@ -1,486 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_bm_core.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_bm_core.png
index ceddf88384..d6f796ec43 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_bm_core.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_bm_core.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_cover.svg
index d4c024531f..d8f62bd231 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_cover.svg
@@ -1,540 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_reset.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_reset.png
index 2039c5e672..41071732ec 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_reset.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_reset.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_upload_sketch.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_upload_sketch.png
index 605d9125f3..92b7a5b874 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_upload_sketch.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_ard_gs_upload_sketch.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_gs_mbed_stack.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_gs_mbed_stack.svg
index c10562e358..5992ad4e27 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_gs_mbed_stack.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/setting-up-portenta/assets/por_gs_mbed_stack.svg
@@ -1,23 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_boards_manager.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_boards_manager.png
index 593ec00781..10fba0ddff 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_boards_manager.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_boards_manager.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_booting_process.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_booting_process.svg
index 8e5902623e..96787c0703 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_booting_process.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_booting_process.svg
@@ -1,200 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_cover.svg
index e32e65bf75..ce4b67d8c6 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_cover.svg
@@ -1,545 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_find_sketch_file.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_find_sketch_file.png
index 4d81393524..de991238cd 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_find_sketch_file.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_find_sketch_file.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_firmware.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_firmware.svg
index dcbdba392d..4c9082ab95 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_firmware.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_firmware.svg
@@ -1,203 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_flash_memory.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_flash_memory.svg
index bf90ede0f2..2bf1f774ae 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_flash_memory.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_flash_memory.svg
@@ -1,15 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_available.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_available.png
index 6543ef7d50..0fc94fe0fc 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_available.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_available.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_complete.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_complete.png
index 7fa7828ef2..631fdd95e9 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_complete.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_complete.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_core.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_core.png
index 3822e00755..0e203b4590 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_core.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_update_core.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_updater_sketch.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_updater_sketch.png
index 1b827c2714..41c3dff2a4 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_updater_sketch.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/updating-the-bootloader/assets/por_ard_bl_updater_sketch.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_basic_setup.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_basic_setup.svg
index ca5a43247a..0290ab3507 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_basic_setup.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_basic_setup.svg
@@ -1,486 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_connections_schema.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_connections_schema.svg
index 6c71081650..0bf6e0a8cc 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_connections_schema.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_connections_schema.svg
@@ -1,650 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_cover.svg
index 5f12d74468..8c101ee3bb 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_cover.svg
@@ -1,620 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_detecting_keys.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_detecting_keys.png
index dfa2cef4e9..08f8207996 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_detecting_keys.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_detecting_keys.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_portenta_to_mkr.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_portenta_to_mkr.svg
index 1f938f1809..39f40ceaac 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_portenta_to_mkr.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_portenta_to_mkr.svg
@@ -1,1338 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_portenta_to_mkr_setup.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_portenta_to_mkr_setup.svg
index 72d035a874..eacb63fa78 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_portenta_to_mkr_setup.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_portenta_to_mkr_setup.svg
@@ -1,1487 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_reset.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_reset.png
index 2039c5e672..41071732ec 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_reset.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_reset.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_select_board.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_select_board.png
index f941f9ad4a..6eefc5da5a 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_select_board.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_select_board.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_select_example.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_select_example.png
index d631f9c5d5..7e563abf86 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_select_example.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_select_example.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_serial_info.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_serial_info.png
index 629a382e54..153f6047e5 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_serial_info.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_serial_info.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_working_demo.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_working_demo.svg
index fa287395b9..0af0dd911d 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_working_demo.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/usb-host/assets/por_ard_usbh_working_demo.svg
@@ -1,1643 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_access_webpage.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_access_webpage.png
index 51f164d8ff..0aafbce362 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_access_webpage.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_access_webpage.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_add_headerfile.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_add_headerfile.png
index e9d512c2da..beb20de4a3 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_add_headerfile.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_add_headerfile.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_client_details.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_client_details.png
index dae701788e..bd2bf0d246 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_client_details.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_client_details.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_copy_ip_address.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_copy_ip_address.png
index 253cef3c53..1f5c88b417 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_copy_ip_address.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_copy_ip_address.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_cover.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_cover.svg
index fb86da98df..0ec6947626 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_cover.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_cover.svg
@@ -1,547 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_find_ap.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_find_ap.png
index 9b6d162574..9f97d7ff7f 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_find_ap.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_find_ap.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_new_tab.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_new_tab.png
index 0182efe234..90d6320c06 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_new_tab.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_new_tab.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_new_tab_name.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_new_tab_name.png
index c5942bcb43..8fc80ecef3 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_new_tab_name.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_new_tab_name.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_open_serial_monitor.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_open_serial_monitor.png
index 28ca05b9ba..19c3caefb4 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_open_serial_monitor.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_open_serial_monitor.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_sketch_explanation.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_sketch_explanation.svg
index 35c64e249a..da0dea1784 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_sketch_explanation.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_sketch_explanation.svg
@@ -1,224 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_toggle_LEDS.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_toggle_LEDS.png
index 6ab66bf7dd..94a52b1f59 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_toggle_LEDS.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_toggle_LEDS.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_tutorial_core_topic.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_tutorial_core_topic.svg
index a048f6b4e4..9b2bafdb9b 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_tutorial_core_topic.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_tutorial_core_topic.svg
@@ -1,536 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_tutorial_overview.svg b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_tutorial_overview.svg
index e71cbb1fdf..755d9f1fef 100644
--- a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_tutorial_overview.svg
+++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_tutorial_overview.svg
@@ -1,1075 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_upload_code_m7.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_upload_code_m7.png
index a43feaf922..07aba4c9ad 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_upload_code_m7.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_ard_ap_upload_code_m7.png differ
diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_tut1_im1.png b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_tut1_im1.png
index e12313dbd9..6383e46329 100644
Binary files a/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_tut1_im1.png and b/content/hardware/04.pro/boards/portenta-h7/tutorials/wifi-access-point/assets/por_tut1_im1.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/featured.png b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/featured.png
index 02bc7c605f..af06783626 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/featured.png and b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/featured.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/usbCPinout.png b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/usbCPinout.png
index df3f5ce1f2..5eb52013d6 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/usbCPinout.png and b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/usbCPinout.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8BlockDiagram.svg b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8BlockDiagram.svg
index 6b4ed96658..2195476a45 100644
--- a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8BlockDiagram.svg
+++ b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8BlockDiagram.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8Dimensions.png b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8Dimensions.png
index 43c41666a4..d19d6b088a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8Dimensions.png and b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8Dimensions.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8HDCPinout.png b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8HDCPinout.png
index a7aa30a604..bd09542e28 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8HDCPinout.png and b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8HDCPinout.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8PowerTree.svg b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8PowerTree.svg
index 4262a3e8f5..2f28c4fd9c 100644
--- a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8PowerTree.svg
+++ b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8PowerTree.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8TopologyBack.svg b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8TopologyBack.svg
index 7a10480cea..b3317e22c8 100644
--- a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8TopologyBack.svg
+++ b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8TopologyBack.svg
@@ -1,2081 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8TopologyFront.svg b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8TopologyFront.svg
index 53e3133a1c..7a9691161b 100644
--- a/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8TopologyFront.svg
+++ b/content/hardware/04.pro/boards/portenta-x8/datasheet/assets/x8TopologyFront.svg
@@ -1,1089 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-x8/image.svg b/content/hardware/04.pro/boards/portenta-x8/image.svg
index ac1068a9a6..03d393fd19 100644
--- a/content/hardware/04.pro/boards/portenta-x8/image.svg
+++ b/content/hardware/04.pro/boards/portenta-x8/image.svg
@@ -1,3721 +1 @@
-
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-x8/interactive/ABX00049-pinout.jpg b/content/hardware/04.pro/boards/portenta-x8/interactive/ABX00049-pinout.jpg
index 0e1b5fce55..3f07b0e482 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/interactive/ABX00049-pinout.jpg and b/content/hardware/04.pro/boards/portenta-x8/interactive/ABX00049-pinout.jpg differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ABX00049-pinout.jpg b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ABX00049-pinout.jpg
index e533de2ef1..ef68ada301 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ABX00049-pinout.jpg and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ABX00049-pinout.jpg differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_alpine_shell.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_alpine_shell.png
index 85b63e657b..5ef89eb1d8 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_alpine_shell.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_alpine_shell.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_challenge.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_challenge.png
index 024b3e7691..2597be6972 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_challenge.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_challenge.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_confirm.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_confirm.png
index 0880f9d0a3..962eee8dc6 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_confirm.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_confirm.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_registration.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_registration.png
index d7fe1710e9..93aebd00b4 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_registration.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_board_manager_factory_registration.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_API_copy.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_API_copy.png
index e2c7a51028..c7845be5dd 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_API_copy.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_API_copy.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_device_name.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_device_name.png
index 230432953b..d54e954eba 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_device_name.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_device_name.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_generate_API.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_generate_API.png
index aacb669c04..877f7daf39 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_generate_API.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_generate_API.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_organization_ID.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_organization_ID.png
index 4272b60c1c..7a415f0010 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_organization_ID.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_organization_ID.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_success.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_success.png
index 9eec52cc62..d7660d59a0 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_success.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_cloud_success.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_example_dashboard_launch.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_example_dashboard_launch.png
index 69ace66a12..93e2eda9ba 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_example_dashboard_launch.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_example_dashboard_launch.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage.png
index bb6c08941a..24468566d0 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_Wifi.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_Wifi.png
index 19bb4dfb76..fcabd4d772 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_Wifi.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_Wifi.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_cloud.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_cloud.png
index f7c9d00d0b..c70d33e31a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_cloud.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_cloud.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_init.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_init.png
index 7cc9a360e0..d72041e0f2 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_init.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_init.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_portenta_x8_manager.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_portenta_x8_manager.png
index 5318f98257..fdeb8089fb 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_portenta_x8_manager.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_portenta_x8_manager.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_shell.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_shell.png
index 1b17b4ca29..8880e36a1f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_shell.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_homepage_shell.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_system_info.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_system_info.png
index 19baa1cf3c..cbc53a32ce 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_system_info.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_system_info.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_SSID.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_SSID.png
index 44501f409c..b9b8ba647a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_SSID.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_SSID.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_connected.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_connected.png
index 4783b565cf..c81225d71f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_connected.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_connected.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_option.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_option.png
index 6c00f9c2f1..f23554407c 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_option.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_option.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_selection.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_selection.png
index e83ab41ab5..0dcfae28db 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_selection.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/OOTB_wifi_selection.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-connection.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-connection.png
index 8043a7b9e3..f7bb57ea97 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-connection.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-connection.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-shell-command.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-shell-command.png
index 867e28f611..e0a2053bd4 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-shell-command.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-shell-command.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-shell-real-time-tasks.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-shell-real-time-tasks.png
index ac23316ead..639e86d83d 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-shell-real-time-tasks.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-shell-real-time-tasks.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-sudo-su.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-sudo-su.png
index 70a8ace7fd..07ff7d4f99 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-sudo-su.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-sudo-su.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-tcp-port.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-tcp-port.png
index 913bad77be..a314f77f52 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-tcp-port.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/adb-tcp-port.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/agent-installation.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/agent-installation.png
index f1ebf3fbc7..f93687857e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/agent-installation.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/agent-installation.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/board-detection.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/board-detection.png
index 0e55feffcd..74226c123c 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/board-detection.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/board-detection.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/cloud_dashboard_working.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/cloud_dashboard_working.gif
index 96d5089c05..af863788b9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/cloud_dashboard_working.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/cloud_dashboard_working.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/cloud_thing_created.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/cloud_thing_created.png
index 110e3fbae1..a58a5bdb61 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/cloud_thing_created.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/cloud_thing_created.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/docker-run-example.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/docker-run-example.gif
index 4e9e0c1779..6010002dfa 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/docker-run-example.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/docker-run-example.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/linux_arduino_RPC.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/linux_arduino_RPC.png
index 284d907b71..7b5f06000f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/linux_arduino_RPC.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/linux_arduino_RPC.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/m4-proxy.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/m4-proxy.png
index 217afb1b9b..ffa80e12ec 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/m4-proxy.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/m4-proxy.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ootb-wifi-config.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ootb-wifi-config.png
index 7672c0a15b..10d9258e3e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ootb-wifi-config.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ootb-wifi-config.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta-x8-functionality-overview.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta-x8-functionality-overview.png
index 617dc765b0..09828e0722 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta-x8-functionality-overview.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta-x8-functionality-overview.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta_x8_call_outs.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta_x8_call_outs.png
index 8809d9cd08..23bb6a26c0 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta_x8_call_outs.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta_x8_call_outs.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta_x8_leds.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta_x8_leds.png
index 0d8d1fbbf5..958d8b6aa7 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta_x8_leds.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/portenta_x8_leds.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/registration-homepage.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/registration-homepage.png
index 0d0726f33a..da441c4172 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/registration-homepage.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/registration-homepage.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/registration-signin.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/registration-signin.png
index 6263d8f86d..1dee5f279e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/registration-signin.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/registration-signin.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/shared-space-settings.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/shared-space-settings.png
index 8be4fccaa4..3113380d7d 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/shared-space-settings.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/shared-space-settings.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-bonjour.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-bonjour.png
index f89e9ddf55..f052b35e14 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-bonjour.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-bonjour.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-ping.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-ping.png
index 158d3fafc2..ed8d861441 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-ping.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-ping.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-service.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-service.png
index b39c0e319b..cba7e1f862 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-service.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-service.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-v4v6.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-v4v6.png
index 91f04688e6..6f007527d9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-v4v6.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-dns-sd-v4v6.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty-auth.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty-auth.png
index cad5f0afe8..d10ea337bf 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty-auth.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty-auth.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty-session.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty-session.png
index 9699fff5b9..34e431c4b5 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty-session.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty-session.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty.png
index 796546fd68..5973c8fdf0 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-putty.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-session.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-session.png
index 486edaf1af..4302a2a22e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-session.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/ssh-x8-session.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/tenta-config-main.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/tenta-config-main.png
index 600d3db90a..e3d87edd5a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/tenta-config-main.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/tenta-config-main.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_Cloud_login.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_Cloud_login.png
index e69d1c9e94..3b3178c601 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_Cloud_login.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_Cloud_login.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_cloud_integration.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_cloud_integration.png
index 1379df3128..37f7f63fd2 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_cloud_integration.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_cloud_integration.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challange_connect.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challange_connect.png
index 0bd7feab6c..575a9e7073 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challange_connect.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challange_connect.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challenge.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challenge.png
index c35692c08e..2b69c16b92 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challenge.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challenge.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challenge_approved.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challenge_approved.png
index ae2dd8b0bc..5685b7bbf5 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challenge_approved.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_challenge_approved.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device-overview.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device-overview.png
index a2b4feb297..edb57d924e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device-overview.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device-overview.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device.png
index 7343412ea2..ba2c68f1d9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device_specs.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device_specs.png
index 3a4fa8f1d2..07f3f11f6f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device_specs.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_device_specs.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_member.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_member.png
index 66dfe94a1e..ea2b013eda 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_member.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_member.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_name.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_name.png
index 1d7878b2d6..51bd6a710a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_name.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_name.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_overview.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_overview.png
index c67d795a0a..67e972768d 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_overview.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_overview.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_target.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_target.png
index c1751e2b8f..f3b1c82e15 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_target.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_target.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_team_roles.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_team_roles.png
index d93071b946..a84a8d63f0 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_team_roles.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_team_roles.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_update_history.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_update_history.png
index 2dfef94096..474f6e32e9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_update_history.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_factory_update_history.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_foundries_login.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_foundries_login.png
index 256d3cb4b6..3283de828d 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_foundries_login.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_foundries_login.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_signup.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_signup.png
index 4db0d289d2..50dc530a82 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_signup.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_signup.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_team.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_team.png
index ad58083fc5..122d0222de 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_team.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_board_manager_team.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_key.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_key.png
index 0bd0b8fd5f..92ad07020f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_key.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_key.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_key_PDF.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_key_PDF.png
index 10754cd55c..d51b7679c2 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_key_PDF.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_key_PDF.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_name.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_name.png
index eae8ec76f3..dc4b021de7 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_name.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_API_name.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_homepage.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_homepage.png
index 5a24451021..e3e8641010 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_homepage.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_homepage.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_new_api.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_new_api.png
index 7cdb9c630d..92176d3865 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_new_api.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_new_api.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_signin.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_signin.png
index 5c884f26da..14e36ac78e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_signin.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/web_cloud_signin.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-IDE.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-IDE.png
index 6649f45361..26b93b56eb 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-IDE.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-IDE.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-terminal-ADB-push.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-terminal-ADB-push.png
index 079a8d7443..d379efd541 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-terminal-ADB-push.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-terminal-ADB-push.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-user-manual-front.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-user-manual-front.png
index 49cd70df59..2d03789e6d 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-user-manual-front.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/assets/x8-user-manual-front.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/hero-banner.png
index e0b1122094..59d0fa7138 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Docker_host.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Docker_host.png
index 4aa7ee8fc5..1680452027 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Docker_host.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Docker_host.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Embedded_Linux_Start.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Embedded_Linux_Start.png
index 13061a0c46..25f8acbc1a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Embedded_Linux_Start.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Embedded_Linux_Start.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Virtual_Machine_Containers.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Virtual_Machine_Containers.png
index c9131e796d..96301df4ea 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Virtual_Machine_Containers.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Virtual_Machine_Containers.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Yocto_Architecture.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Yocto_Architecture.png
index 82b7a55a35..6fd21360d9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Yocto_Architecture.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/Yocto_Architecture.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/factory-page.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/factory-page.png
index 356aabbcda..6d573937b4 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/factory-page.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/factory-page.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/images_containers.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/images_containers.png
index 060f235f09..8b1f055589 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/images_containers.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/images_containers.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/linux_arduino_RPC.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/linux_arduino_RPC.png
index 284d907b71..7b5f06000f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/linux_arduino_RPC.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/linux_arduino_RPC.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/m4-proxy.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/m4-proxy.png
index 217afb1b9b..ffa80e12ec 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/m4-proxy.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/m4-proxy.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/x8-fundamentals-c.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/x8-fundamentals-c.png
index 76250f1af7..03fb152bdd 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/x8-fundamentals-c.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/assets/x8-fundamentals-c.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/hero-banner.png
index 4be066c894..aee6990431 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/02.x8-fundamentals/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/03.uploading-sketches-m4/assets/x8-board-manager.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/03.uploading-sketches-m4/assets/x8-board-manager.png
index 2a9d91d514..f84ab6969c 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/03.uploading-sketches-m4/assets/x8-board-manager.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/03.uploading-sketches-m4/assets/x8-board-manager.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/03.uploading-sketches-m4/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/03.uploading-sketches-m4/hero-banner.png
index 3ced20f6dc..2eeec9fede 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/03.uploading-sketches-m4/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/03.uploading-sketches-m4/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/component-placement.svg b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/component-placement.svg
index 41102446da..da6d6303e3 100644
--- a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/component-placement.svg
+++ b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/component-placement.svg
@@ -1,1789 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/linux_arduino_RPC.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/linux_arduino_RPC.png
index 284d907b71..7b5f06000f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/linux_arduino_RPC.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/linux_arduino_RPC.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/m4-proxy.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/m4-proxy.png
index 217afb1b9b..ffa80e12ec 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/m4-proxy.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/m4-proxy.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/sensor-wiring-breakout.svg b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/sensor-wiring-breakout.svg
index e5a05579e0..290ed7a5b7 100644
--- a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/sensor-wiring-breakout.svg
+++ b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/sensor-wiring-breakout.svg
@@ -1,1669 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/x8-rpc-c.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/x8-rpc-c.gif
index db452e026a..0e6974acd6 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/x8-rpc-c.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/assets/x8-rpc-c.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/hero-banner.png
index 5c592d5a1e..338e5c5697 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-container-rm.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-container-rm.png
index 23b47b8c49..8cd02d0133 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-container-rm.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-container-rm.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-images.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-images.png
index 7d0d107831..ea1e544c7f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-images.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-images.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-ps.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-ps.png
index f6e1560a36..fbd40c3117 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-ps.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-ps.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-pull.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-pull.png
index 4b86270323..51cc4dc43e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-pull.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-pull.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-run.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-run.png
index 3384c3571a..4696d6c886 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-run.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/assets/docker-run.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/hero-banner.png
index 529edfaf0c..611381c624 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/assets/foundriesfactory-device-group.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/assets/foundriesfactory-device-group.png
index a3a2601546..ad0dcde820 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/assets/foundriesfactory-device-group.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/assets/foundriesfactory-device-group.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/assets/foundriesfactory-waves-page.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/assets/foundriesfactory-waves-page.png
index d853a72430..697dea7c00 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/assets/foundriesfactory-waves-page.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/assets/foundriesfactory-waves-page.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/hero-banner.png
index 7c1f23f47f..9618a1ea2f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-container-folder.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-container-folder.png
index e35e5d617a..370d6f976b 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-container-folder.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-container-folder.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-factory-git.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-factory-git.png
index 12b4c44b42..f69b2b6856 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-factory-git.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-factory-git.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-factory-page.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-factory-page.png
index 990f10576e..1d9f8c374a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-factory-page.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-factory-page.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-git.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-git.png
index c454965a20..57dabe42b9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-git.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/custom-git.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/factory-user-settings.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/factory-user-settings.png
index 607a8f6992..66afc66338 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/factory-user-settings.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/factory-user-settings.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/token-creation-page.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/token-creation-page.png
index 848fcd3e5a..99f5755767 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/token-creation-page.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/assets/token-creation-page.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/hero-banner.png
index 1a8cb04166..76114a2417 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/copy_files.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/copy_files.png
index 8cdb18849e..065dfea3e3 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/copy_files.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/copy_files.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/docker_build.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/docker_build.png
index 00f1dd1f6f..48e7588881 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/docker_build.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/docker_build.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/docker_volume_explorer.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/docker_volume_explorer.png
index 85fc58e631..e440c70de2 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/docker_volume_explorer.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/docker_volume_explorer.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/git_clone_lmp-manifest.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/git_clone_lmp-manifest.png
index 1ba1d0e0ae..cb4734b08a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/git_clone_lmp-manifest.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/git_clone_lmp-manifest.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/git_config.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/git_config.png
index 8bf8c85f89..527e9ff199 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/git_config.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/git_config.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_init.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_init.png
index 847517dcae..a352463f72 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_init.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_init.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_sync.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_sync.png
index 91eaf712f8..1ce0fcf81f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_sync.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_sync.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_sync_finished.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_sync_finished.png
index 9a9caf9fb7..db7018ca3a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_sync_finished.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/repo_sync_finished.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_build.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_build.png
index d82191d913..5d1b885684 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_build.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_build.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_distro_setup.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_distro_setup.png
index 2036d5610f..6cd6744224 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_distro_setup.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_distro_setup.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_finished.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_finished.png
index 02bba9be42..bbdc0d6e4e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_finished.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/tools_finished.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8-image-build-c.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8-image-build-c.gif
index ebbfb987a5..f89811be7e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8-image-build-c.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8-image-build-c.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_build.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_build.png
index 3cfa865ef4..e2983d58b1 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_build.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_build.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_build_finished.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_build_finished.png
index f0d853452a..8bbb91ff71 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_build_finished.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_build_finished.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_distro_setup.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_distro_setup.png
index 8eadc841eb..dd11cdc475 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_distro_setup.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/assets/x8_distro_setup.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/hero-banner.png
index 83e4b95146..8d0c1d2b1a 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB-succesful-OS-update.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB-succesful-OS-update.png
index de9d2b229a..f83ea655d9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB-succesful-OS-update.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB-succesful-OS-update.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_homepage_update_button.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_homepage_update_button.png
index 1e42e60b55..9d2c849d37 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_homepage_update_button.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_homepage_update_button.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_homepage_update_latest.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_homepage_update_latest.png
index 289c9f2e53..52e968013b 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_homepage_update_latest.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_homepage_update_latest.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_update_select.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_update_select.png
index cc9650ffa0..286e8778f9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_update_select.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/OOTB_update_select.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/adb-shell-os-release.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/adb-shell-os-release.png
index 73fa155491..350eb704fa 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/adb-shell-os-release.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/adb-shell-os-release.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/breakout-dip-switches.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/breakout-dip-switches.png
index d005c78190..1df1879300 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/breakout-dip-switches.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/breakout-dip-switches.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/hatCarrier-dip-switches.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/hatCarrier-dip-switches.png
index 3cc43bf630..fce0122219 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/hatCarrier-dip-switches.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/hatCarrier-dip-switches.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/lpm-manifest-overview.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/lpm-manifest-overview.png
index e54b1f55b4..df2e5c5d04 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/lpm-manifest-overview.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/lpm-manifest-overview.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/max-carrier-dip-switches.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/max-carrier-dip-switches.png
index a8fc757431..17bffdeda2 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/max-carrier-dip-switches.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/max-carrier-dip-switches.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/midCarrier-dip-switches.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/midCarrier-dip-switches.png
index 8e124cafa1..8ff8cdfda5 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/midCarrier-dip-switches.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/midCarrier-dip-switches.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/uuu-flashing-success.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/uuu-flashing-success.png
index 20e41592b7..0e2741e9de 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/uuu-flashing-success.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/uuu-flashing-success.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/web_board_manager_factory_device-overview.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/web_board_manager_factory_device-overview.png
index a2b4feb297..edb57d924e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/web_board_manager_factory_device-overview.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/web_board_manager_factory_device-overview.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/x8-os-image-update.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/x8-os-image-update.gif
index 027d57fbad..69669f1b56 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/x8-os-image-update.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/assets/x8-os-image-update.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/hero-banner.png
index d2c974434c..d5aeee5cd7 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_01.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_01.png
index 3a06122ac2..37d31a9b67 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_01.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_01.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_02.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_02.png
index b9337af10d..a6d0c9eef0 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_02.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_02.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_03.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_03.png
index b4f22390a0..8beaf07314 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_03.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_03.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_04.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_04.png
index bf4c437ebe..44134b4b68 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_04.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_04.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_05.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_05.png
index bfce34119f..11da18714f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_05.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_05.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_06.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_06.png
index 0c9dd44d0c..532a093782 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_06.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_06.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_07.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_07.png
index e35419f33f..389a7ef15c 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_07.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_07.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_08.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_08.png
index 4407a02099..40ec134366 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_08.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_08.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_09.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_09.png
index 5e73f63153..c399d3fad8 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_09.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_09.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_10.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_10.png
index 2834254008..0c5ee35e53 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_10.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_10.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_11.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_11.png
index ee2cbfc83f..87bcaabdbf 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_11.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_11.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_12.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_12.png
index 72c61ad7a0..dbe6c3f826 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_12.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_12.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_13.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_13.png
index e70a87efeb..4967d6160f 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_13.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_13.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_14.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_14.png
index 591de74af1..7260b06904 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_14.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_14.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_15.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_15.png
index ff34daca99..9030174311 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_15.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_15.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_16.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_16.png
index 220bbe833f..e899007db9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_16.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_16.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_17.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_17.png
index 42ecb2179a..332071e3f6 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_17.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_17.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_18.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_18.png
index 93318c1996..b58a186583 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_18.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_18.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_19.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_19.png
index ca509e5ff6..ed86590cc6 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_19.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_19.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_20.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_20.png
index 7698019b2f..b3f68618fc 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_20.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_20.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_21.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_21.png
index 4dce3ccb9c..b6592cef8c 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_21.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_21.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_22.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_22.png
index 99c550605b..28bdecb2e5 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_22.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_22.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_23.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_23.png
index fa446c1d45..1ff21fbb1d 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_23.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_23.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_24.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_24.png
index bf0b739da4..d7614c6d94 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_24.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_24.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_25.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_25.png
index 0ce2a4fdfc..386a541bd4 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_25.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/assets/x8-data-logging-img_25.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/hero-banner.png
index 5676b0c883..17daa60b23 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/portentaX8-home-screen.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/portentaX8-home-screen.png
index 7b2a1dcbcd..825daf5299 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/portentaX8-home-screen.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/portentaX8-home-screen.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/portentaX8_hub_screen.svg b/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/portentaX8_hub_screen.svg
index 102f96fef7..d8874a6ec3 100644
--- a/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/portentaX8_hub_screen.svg
+++ b/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/portentaX8_hub_screen.svg
@@ -1,156 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/vim-edit-dockerCompose.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/vim-edit-dockerCompose.png
index 4f530bbf9c..fe85246744 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/vim-edit-dockerCompose.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/assets/vim-edit-dockerCompose.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/hero-banner.png
index e99e13bfbd..4b5cad9435 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/docker-build.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/docker-build.png
index 289e3b1587..b7571a5959 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/docker-build.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/docker-build.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/docker-state.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/docker-state.png
index 03afe9b35e..0309be7c86 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/docker-state.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/docker-state.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-arch-general.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-arch-general.png
index 0ced1f316a..a42e6243b8 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-arch-general.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-arch-general.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-arch.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-arch.png
index df04c7276d..7b011fc253 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-arch.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-arch.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-gateway-example-run.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-gateway-example-run.png
index b7b6092f6b..77f4911654 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-gateway-example-run.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-gateway-example-run.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-hardware.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-hardware.png
index f11678d3a9..78eddb1f2d 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-hardware.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/multi-protocol-hardware.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/ttn-end-device.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/ttn-end-device.png
index 16cefd87ef..395245cbca 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/ttn-end-device.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/assets/ttn-end-device.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/hero-banner.png
index 08fce9b3f8..9c43cb8858 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-connect-terminal.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-connect-terminal.png
index 07c74984b7..a953d319a3 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-connect-terminal.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-connect-terminal.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-container-install.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-container-install.png
index a05717c96e..87717aa136 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-container-install.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-container-install.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-mkdir.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-mkdir.png
index 0ec099b5f7..285ac1a7b1 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-mkdir.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-mkdir.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-wordpress-site.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-wordpress-site.png
index e82ffd38e1..2ae1d5c134 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-wordpress-site.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/assets/webserver-wordpress-site.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/hero-banner.png
index c4a6c570a3..71865df908 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/14.x8-firmware-release-notes/hero-banner.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/14.x8-firmware-release-notes/hero-banner.png
index 69d2483425..3583f757e3 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/14.x8-firmware-release-notes/hero-banner.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/14.x8-firmware-release-notes/hero-banner.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/arduino-cloud-visualization-example.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/arduino-cloud-visualization-example.gif
index 2a3b0a6bc2..d2402aff35 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/arduino-cloud-visualization-example.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/arduino-cloud-visualization-example.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-classifier-train-result.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-classifier-train-result.png
index 85cd4d56bc..8d5bea93cf 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-classifier-train-result.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-classifier-train-result.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-acquisction-split-distributed.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-acquisction-split-distributed.png
index ff7161611b..d4d057fb68 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-acquisction-split-distributed.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-acquisction-split-distributed.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-acquisction.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-acquisction.png
index dd411eaa5b..97f6327d32 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-acquisction.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-acquisction.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-running.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-running.png
index 3fddbd7b1c..b464ec9637 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-running.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-running.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-set.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-set.png
index ce941d10ec..eec2778326 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-set.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-set.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-setup.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-setup.png
index 0527c12424..e2f40aef27 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-setup.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-forward-setup.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-split-confirm.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-split-confirm.png
index 8eac36e806..996e144628 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-split-confirm.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-split-confirm.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-split-warning.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-split-warning.png
index f5794358d2..38ed093905 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-split-warning.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-data-split-warning.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-deployment-docker1.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-deployment-docker1.png
index 8a8eaa4704..b9cc260670 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-deployment-docker1.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-deployment-docker1.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-deployment-docker2.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-deployment-docker2.png
index e9424a290e..5dafc95717 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-deployment-docker2.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-deployment-docker2.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-device-connected.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-device-connected.png
index 1f9c8579a0..ba5c7e8b71 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-device-connected.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-device-connected.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-impulse-creation.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-impulse-creation.png
index 23318d88c6..c4a2e987db 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-impulse-creation.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-impulse-creation.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-spectral-features-general.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-spectral-features-general.png
index 37fc50cce1..9f8eff1aa2 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-spectral-features-general.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-spectral-features-general.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-spectral-features-param.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-spectral-features-param.png
index 82644f512a..f09338a694 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-spectral-features-param.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/edge-impulse-spectral-features-param.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/ei-docker-start-inteference.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/ei-docker-start-inteference.gif
index dcd5c1398d..9996752b8e 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/ei-docker-start-inteference.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/ei-docker-start-inteference.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/flow-anomaly-detection-example.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/flow-anomaly-detection-example.png
index fcabb66186..0b1f7df8a9 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/flow-anomaly-detection-example.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/flow-anomaly-detection-example.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/flow-sense-banner-ref.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/flow-sense-banner-ref.gif
index 37703f30a7..a73cccebf6 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/flow-sense-banner-ref.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/flow-sense-banner-ref.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/hardware.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/hardware.png
index b60fdbe9cf..3def55ad21 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/hardware.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/hardware.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/system-wiring.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/system-wiring.png
index 2dbf2ff09d..62285734d3 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/system-wiring.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/15.edge-ai-docker-container/assets/system-wiring.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/download.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/download.png
index 5767d9f5ff..8adffa7263 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/download.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/download.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/portentaX8-home-screen.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/portentaX8-home-screen.png
index 8611ce617f..941f906f3c 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/portentaX8-home-screen.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/portentaX8-home-screen.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/portentaX8_hub_screen.svg b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/portentaX8_hub_screen.svg
index 102f96fef7..d8874a6ec3 100644
--- a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/portentaX8_hub_screen.svg
+++ b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/portentaX8_hub_screen.svg
@@ -1,156 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-env-setup.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-env-setup.gif
index 9509b1e15e..fd1e2bbaf2 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-env-setup.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-env-setup.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-circular.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-circular.gif
index cced0e67e5..27d7d76fe0 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-circular.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-circular.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-circular.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-circular.gif
index 0f7f8fef3f..44a9c248e6 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-circular.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-circular.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-env.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-env.gif
index 16c06eff50..474a3c4363 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-env.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-env.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-square.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-square.gif
index fadb1a8da1..9c0e3ebc15 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-square.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-control-square.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-run.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-run.gif
index 4cfb045150..f3a97da968 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-run.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-run.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-setup.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-setup.gif
index 8755aab327..a2670de255 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-setup.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-setup.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-simple.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-simple.gif
index c5518502b0..1e2438a24b 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-simple.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-simple.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-square.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-square.gif
index 6210706930..6190d05a27 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-square.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-cmd-turtlesim-square.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-docker-turtlesim-run.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-docker-turtlesim-run.gif
index d5ac842c99..ab049b564b 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-docker-turtlesim-run.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-docker-turtlesim-run.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-turtlesim-banner.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-turtlesim-banner.gif
index f4738c1744..18a3c35499 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-turtlesim-banner.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-turtlesim-banner.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-turtlesim-docker.gif b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-turtlesim-docker.gif
index fa4ab68101..52b688feec 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-turtlesim-docker.gif and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-ros2-turtlesim-docker.gif differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-wayland-display-socket.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-wayland-display-socket.png
index 3976a849c7..8fa727dcc6 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-wayland-display-socket.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-wayland-display-socket.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-wayland-status.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-wayland-status.png
index 5a46b34e55..6f5a0b7a68 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-wayland-status.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-wayland-status.png differ
diff --git a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-with-ros2-jazzy.png b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-with-ros2-jazzy.png
index 0b091f3d65..89043445be 100644
Binary files a/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-with-ros2-jazzy.png and b/content/hardware/04.pro/boards/portenta-x8/tutorials/16.getting-started-with-ros2/assets/x8-with-ros2-jazzy.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierConnectors.png b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierConnectors.png
index f3a238a190..7e7bf2b1f9 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierConnectors.png and b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierConnectors.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierConnectorsBottom.png b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierConnectorsBottom.png
index 28720f8097..11fe25184e 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierConnectorsBottom.png and b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierConnectorsBottom.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierEthernetSolderJumpers.svg b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierEthernetSolderJumpers.svg
index 2eb45b7b3e..7ac6711384 100644
--- a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierEthernetSolderJumpers.svg
+++ b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierEthernetSolderJumpers.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierOutline.png b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierOutline.png
index 41bc55a3f3..41434020a1 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierOutline.png and b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierOutline.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierPinOut.jpg b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierPinOut.jpg
index ab1ec87927..4a9e69bc5f 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierPinOut.jpg and b/content/hardware/04.pro/carriers/portenta-breakout/datasheet/assets/breakoutCarrierPinOut.jpg differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/image.svg b/content/hardware/04.pro/carriers/portenta-breakout/image.svg
index b28c368e6c..4f6451ebba 100644
--- a/content/hardware/04.pro/carriers/portenta-breakout/image.svg
+++ b/content/hardware/04.pro/carriers/portenta-breakout/image.svg
@@ -1,1041 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/interactive/ASX00031-pinout.png b/content/hardware/04.pro/carriers/portenta-breakout/interactive/ASX00031-pinout.png
index b27f586da9..cc1394d7e4 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/interactive/ASX00031-pinout.png and b/content/hardware/04.pro/carriers/portenta-breakout/interactive/ASX00031-pinout.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ard_ide_pref.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ard_ide_pref.png
index e2570a3b15..c5c20d5470 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ard_ide_pref.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ard_ide_pref.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_connection_illustration.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_connection_illustration.png
index 5fec9bdfb7..17a5441a63 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_connection_illustration.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_connection_illustration.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_connection_setting.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_connection_setting.png
index 097a85c89f..d0154f8c92 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_connection_setting.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_connection_setting.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_elf_path.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_elf_path.png
index 93d1a49af3..140b405dd9 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_elf_path.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_elf_path.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_optional_settings.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_optional_settings.png
index 0ee701e7ad..a64a985994 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_optional_settings.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_optional_settings.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_cpu.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_cpu.png
index 4ac51c2892..89c98b5ac9 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_cpu.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_cpu.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_elf_file.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_elf_file.png
index b471492dab..602b36e913 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_elf_file.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_elf_file.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_find_tab.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_find_tab.png
index dd9d4a992e..18809882ce 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_find_tab.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_find_tab.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_find_window.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_find_window.png
index c7e66732d4..278425b5cb 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_find_window.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_find_window.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_start_debugging.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_start_debugging.png
index 08ceb5004f..b4d535e7c7 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_start_debugging.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_ozone_start_debugging.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_pref_window.png b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_pref_window.png
index c1d7b6dea5..714a7d510b 100644
Binary files a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_pref_window.png and b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/assets/breakout_jlink_pref_window.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_circuit_diagram.svg b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_circuit_diagram.svg
index 2df20c8c24..68b1f4142b 100644
--- a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_circuit_diagram.svg
+++ b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_circuit_diagram.svg
@@ -1,1458 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_dip_switch.svg b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_dip_switch.svg
index 0738317c33..66fe16b176 100644
--- a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_dip_switch.svg
+++ b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_dip_switch.svg
@@ -1,905 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_main_parts.svg b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_main_parts.svg
index 02ecf1f9b4..c61d2f0505 100644
--- a/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_main_parts.svg
+++ b/content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/assets/breakout_gs_main_parts.svg
@@ -1,1066 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/featured.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/featured.png
index b8d8219bb2..ca80dc2aac 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/featured.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/featured.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-blockdiagram.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-blockdiagram.png
index bb4a4ea89e..28fac78944 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-blockdiagram.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-blockdiagram.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-pinout.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-pinout.png
index f8cfe2ebd9..58c47f9c34 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-pinout.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-pinout.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-powertree.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-powertree.png
index c96b71ab11..6bba9c530a 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-powertree.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc-powertree.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc_high-density-connector-x8.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc_high-density-connector-x8.png
index 0de706788f..37e41b357c 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc_high-density-connector-x8.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/phc_high-density-connector-x8.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_mechanical.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_mechanical.png
index e376d05304..103ec98b46 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_mechanical.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_mechanical.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_microSDConnector.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_microSDConnector.png
index 412d12e010..e10d082234 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_microSDConnector.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_microSDConnector.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_mounting.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_mounting.png
index 37ecf2244f..00e89f4613 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_mounting.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_mounting.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_pushButton.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_pushButton.png
index 2c431dc5f1..dd3f22ae9a 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_pushButton.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_pushButton.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_topology.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_topology.png
index 7cd294f126..e75e51b26c 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_topology.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_topology.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_usbjtagConnectors.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_usbjtagConnectors.png
index 81b904692e..523057494e 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_usbjtagConnectors.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/datasheet/assets/portentaHatCarrier_usbjtagConnectors.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/image.svg b/content/hardware/04.pro/carriers/portenta-hat-carrier/image.svg
index 5bd9e843bc..9994d48273 100644
--- a/content/hardware/04.pro/carriers/portenta-hat-carrier/image.svg
+++ b/content/hardware/04.pro/carriers/portenta-hat-carrier/image.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/interactive/ASX00049-pinout.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/interactive/ASX00049-pinout.png
index 96740bcae3..a6ef8aeaea 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/interactive/ASX00049-pinout.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/interactive/ASX00049-pinout.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_fan_mount.gif b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_fan_mount.gif
index 911a19b500..3362bbd6d8 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_fan_mount.gif and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_fan_mount.gif differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_fan_operation.gif b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_fan_operation.gif
index ba73f701f0..48190e68aa 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_fan_operation.gif and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_fan_operation.gif differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_mount.gif b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_mount.gif
index 46561e3ea5..81a1e6aeb6 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_mount.gif and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_mount.gif differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_showcase.gif b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_showcase.gif
index 89029a59e1..9292753c8e 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_showcase.gif and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/board_showcase.gif differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATCarrier_mipiCam_mount.gif b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATCarrier_mipiCam_mount.gif
index 68734a546e..2539939fd8 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATCarrier_mipiCam_mount.gif and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATCarrier_mipiCam_mount.gif differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_16pin.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_16pin.png
index 9eb87684e9..fa03b047c0 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_16pin.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_16pin.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_40pin.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_40pin.png
index ed1adf6dc5..792b3696eb 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_40pin.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_40pin.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN.png
index 9424779d08..a3b869e5ca 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN_conn.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN_conn.png
index 833276855f..793b8c4fb6 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN_conn.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN_conn.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN_struct.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN_struct.png
index 93e148e0c2..dfdd892b02 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN_struct.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_CAN_struct.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_DIPswitch.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_DIPswitch.png
index 84f885f2f3..181ef4431e 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_DIPswitch.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_DIPswitch.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_I2C_conn.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_I2C_conn.png
index 589b03dd7d..d5bac55c0a 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_I2C_conn.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_I2C_conn.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_JTAG.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_JTAG.png
index 67d247d82f..6cce4e96e7 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_JTAG.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_JTAG.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_MIPI.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_MIPI.png
index bd21672051..994d896117 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_MIPI.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_MIPI.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_USBA.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_USBA.png
index 0469881311..47306907cd 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_USBA.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_USBA.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_analogIOs.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_analogIOs.png
index 0faa62973b..eaae1583b9 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_analogIOs.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_analogIOs.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_board_overview.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_board_overview.png
index 5681c09e51..57ea5c39ca 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_board_overview.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_board_overview.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_board_topology.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_board_topology.png
index fab6afe9aa..5331e473b2 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_board_topology.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_board_topology.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_c33.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_c33.png
index 441cc26cf8..696e9573ff 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_c33.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_c33.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_c33_stack.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_c33_stack.png
index bde2985e68..7d5dbd81e3 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_c33_stack.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_c33_stack.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_compatible_boards.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_compatible_boards.png
index e68be3b57a..2dd97ef2e3 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_compatible_boards.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_compatible_boards.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_ethernet.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_ethernet.png
index 84f08a979b..38457b0c9d 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_ethernet.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_ethernet.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_h7.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_h7.png
index 49f0e9284f..d271ae705a 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_h7.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_h7.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_h7_stack.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_h7_stack.png
index 63748fc2f4..2871bcfa68 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_h7_stack.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_h7_stack.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_helloWorld.gif b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_helloWorld.gif
index 4ef6f7dde5..bd423eaf7f 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_helloWorld.gif and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_helloWorld.gif differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_microsd.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_microsd.png
index d05b7d9710..765e69300b 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_microsd.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_microsd.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_pins.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_pins.png
index c20735ea4a..39dd6575a0 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_pins.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_pins.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_powerSource.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_powerSource.png
index 1115b1aa7f..64c49a34e8 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_powerSource.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_powerSource.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_powerSource_block.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_powerSource_block.png
index fe32c4130d..3aae565c95 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_powerSource_block.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_powerSource_block.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_pushButton.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_pushButton.png
index c980f01836..f5ad4d5f5c 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_pushButton.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_pushButton.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_rasphat_audio.gif b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_rasphat_audio.gif
index 046a5af1d4..ff2d9cbd15 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_rasphat_audio.gif and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_rasphat_audio.gif differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_sdtest_c33.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_sdtest_c33.png
index 53d7258844..be6d048728 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_sdtest_c33.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_sdtest_c33.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_x8.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_x8.png
index eb1dbb22fc..7e3af43634 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_x8.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_x8.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_x8_stack.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_x8_stack.png
index 06178a23f1..52d6676be4 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_x8_stack.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHATcarrier_x8_stack.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_mechanical.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_mechanical.png
index e376d05304..103ec98b46 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_mechanical.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_mechanical.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_pinout.svg b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_pinout.svg
index d3853c5d0a..f521df3580 100644
--- a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_pinout.svg
+++ b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_pinout.svg
@@ -1,1381 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_powerTrees.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_powerTrees.png
index 2e81611a76..38c7c99799 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_powerTrees.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/assets/portentaHatCarrier_powerTrees.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/hero-banner.png b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/hero-banner.png
index d63886debf..d31af6683e 100644
Binary files a/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/hero-banner.png and b/content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/hero-banner.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_antenna_sma.png b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_antenna_sma.png
index f278b5ea51..9283ae8e95 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_antenna_sma.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_antenna_sma.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_audio_line.png b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_audio_line.png
index 1370253b12..84c32e71e2 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_audio_line.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_audio_line.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_boot_sel.png b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_boot_sel.png
index 1c54f1ecbb..6eca9bc534 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_boot_sel.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_boot_sel.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_conn_module.png b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_conn_module.png
index c05ae778ba..235a47d326 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_conn_module.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_conn_module.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_debug_conn.png b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_debug_conn.png
index 66344447e9..ae08084b3d 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_debug_conn.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_debug_conn.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_hd_connectors.png b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_hd_connectors.png
index 987524a2f8..2870a8caad 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_hd_connectors.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_hd_connectors.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_power.png b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_power.png
index 8c5d93162a..b08c79501f 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_power.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_power.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_power_tree.png b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_power_tree.png
index b96774a792..9abd321b2c 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_power_tree.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_power_tree.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_storage_conn.png b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_storage_conn.png
index b0f6871d9b..037188bc26 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_storage_conn.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/_unlisted/getting-started/assets/mc_ard_storage_conn.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/featured.png b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/featured.png
index 42aff4629d..bf23eff00e 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/featured.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/featured.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBlockDiagram.svg b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBlockDiagram.svg
index 06a8e317af..630a842664 100644
--- a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBlockDiagram.svg
+++ b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBlockDiagram.svg
@@ -1,219 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBoardOutline.png b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBoardOutline.png
index 30ac4ead74..f133633aa9 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBoardOutline.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBoardOutline.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBoardOutlineHoles.png b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBoardOutlineHoles.png
index 8cdd6c671d..fced34310f 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBoardOutlineHoles.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierBoardOutlineHoles.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierConnectors.png b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierConnectors.png
index dd08f450ec..2c0b460ec9 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierConnectors.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierConnectors.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierDesignators.png b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierDesignators.png
index 00e8cd0e42..b622ec0b54 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierDesignators.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierDesignators.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierPowerTree.svg b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierPowerTree.svg
index 7c1b2a7650..82e2c80a98 100644
--- a/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierPowerTree.svg
+++ b/content/hardware/04.pro/carriers/portenta-max-carrier/datasheet/assets/maxCarrierPowerTree.svg
@@ -1,90 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/image.svg b/content/hardware/04.pro/carriers/portenta-max-carrier/image.svg
index ed7de8f2b7..baf9646413 100644
--- a/content/hardware/04.pro/carriers/portenta-max-carrier/image.svg
+++ b/content/hardware/04.pro/carriers/portenta-max-carrier/image.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/interactive/ABX00043-pinout.png b/content/hardware/04.pro/carriers/portenta-max-carrier/interactive/ABX00043-pinout.png
index f85651b94f..8358b587f4 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/interactive/ABX00043-pinout.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/interactive/ABX00043-pinout.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/Connect-H7-to-Max-carrier.svg b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/Connect-H7-to-Max-carrier.svg
index 3233c43526..c34e36b94b 100644
--- a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/Connect-H7-to-Max-carrier.svg
+++ b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/Connect-H7-to-Max-carrier.svg
@@ -1,2871 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/Sim-card-and-antenna-on-Max-carrier.svg b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/Sim-card-and-antenna-on-Max-carrier.svg
index 59909f8f15..5ef10b0f20 100644
--- a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/Sim-card-and-antenna-on-Max-carrier.svg
+++ b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/Sim-card-and-antenna-on-Max-carrier.svg
@@ -1,1998 +1 @@
-
+
\ No newline at end of file
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/result-serial-monitor.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/result-serial-monitor.png
index a62afbc826..37825dda8a 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/result-serial-monitor.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/result-serial-monitor.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/set-radio-technology-sm.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/set-radio-technology-sm.png
index 540113e90c..a510effee4 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/set-radio-technology-sm.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/assets/set-radio-technology-sm.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_hd_ttn_connectors.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_hd_ttn_connectors.png
index 987524a2f8..2870a8caad 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_hd_ttn_connectors.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_hd_ttn_connectors.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_boot_sel.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_boot_sel.png
index 1c54f1ecbb..6eca9bc534 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_boot_sel.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_boot_sel.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_1.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_1.png
index 0ef2a90cd1..1c98bd0140 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_1.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_1.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_2.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_2.png
index 87eb1afb9a..fe7646f26a 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_2.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_2.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_3.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_3.png
index 4caa50de02..23d28126e5 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_3.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_3.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_4.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_4.png
index c54e000909..58d45ada48 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_4.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_console_4.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_firmware_1.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_firmware_1.png
index 027e4e096a..66a5cd6ecb 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_firmware_1.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_firmware_1.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_library.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_library.png
index cafcf35c7a..c4da9dbefd 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_library.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_library.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_module.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_module.png
index dd745fb3e9..cedab2d145 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_module.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_module.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_power.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_power.png
index 80e0b9cb3a..acb9104da1 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_power.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/assets/mc_ard_ttn_power.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portenta4G_module_struct.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portenta4G_module_struct.png
index ca261c4899..0aaf38f5d0 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portenta4G_module_struct.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portenta4G_module_struct.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_complete_setup.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_complete_setup.png
index e4c0da0b99..4e2b4607cf 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_complete_setup.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_complete_setup.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_init.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_init.png
index f0cea52a82..04c2d04647 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_init.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_init.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_main.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_main.png
index eff24bd0aa..6473f39cb2 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_main.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_main.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_netStat.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_netStat.png
index c91321db76..a0feb0f008 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_netStat.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_netStat.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_options.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_options.png
index e56f040063..2e9b9ea793 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_options.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_options.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_sysInfo.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_sysInfo.png
index a3e9603101..c462e5a899 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_sysInfo.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_sysInfo.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_test.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_test.png
index 541f93f681..acfb4abddb 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_test.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_modem_test.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_module_setup.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_module_setup.png
index 032d479660..3143ffc88b 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_module_setup.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_module_setup.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_1.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_1.png
index ef23c3e106..bc1d4ed882 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_1.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_1.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_2.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_2.png
index cbf3fb118d..c7a46dff76 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_2.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_2.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_3.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_3.png
index c5f2d0971a..5faf127131 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_3.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_3.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_4.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_4.png
index 6b7f73d1af..be6a6983cc 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_4.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_4.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_5.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_5.png
index 9e9bcc1464..9d5c5d727d 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_5.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_5.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_card_status.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_card_status.png
index 3b05940bbb..f30f78169f 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_card_status.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_card_status.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_connector.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_connector.png
index 3341f66c85..08d37af21d 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_connector.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_connector.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_dynamic.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_dynamic.png
index e94260051b..58dfbfd89f 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_dynamic.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_dynamic.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_list.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_list.png
index 77283302bf..307e910b02 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_list.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_list.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_network_start.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_network_start.png
index c586e66da5..a33ffc73d9 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_network_start.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_network_start.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_pinout.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_pinout.png
index df539bb541..49a13ce6e3 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_pinout.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_pinout.png differ
diff --git a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_set.png b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_set.png
index cb3437d721..9ef37420b9 100644
Binary files a/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMAXcarrier_mpcie_set.png and b/content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/assets/portentaMA