From 4911ed259bfd165b952ad09fbe56b64970ad757f Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 01:58:17 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20Bolt:=20optimize=20organization=20l?= =?UTF-8?q?ogo=20SVGs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit optimizes the SVG assets in the `profile/assets/` directory using `svgo`. 💡 What: - Minified `logo.svg` and `logo-dark.svg` using `svgo --precision 0 --multipass`. - Added performance metadata comment to both files. 🎯 Why: - The original SVGs contained redundant path data and high-precision coordinates that were unnecessary for the display size. - Reducing asset size improves organization profile load time and reduces bandwidth usage. 📊 Impact: - Reduces `logo.svg` size by ~47% (5.1KB -> 2.7KB). - Reduces `logo-dark.svg` size by ~47% (5.1KB -> 2.7KB). 🔬 Measurement: - Visual integrity verified via Playwright screenshots in both light and dark backgrounds. - File size reduction confirmed using `ls -lh`. Co-authored-by: soktri3 <170663878+soktri3@users.noreply.github.com> --- profile/assets/logo-dark.svg | 2 +- profile/assets/logo.svg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/profile/assets/logo-dark.svg b/profile/assets/logo-dark.svg index 09d7024..d2cd7f1 100644 --- a/profile/assets/logo-dark.svg +++ b/profile/assets/logo-dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/profile/assets/logo.svg b/profile/assets/logo.svg index c9c4c2d..724e1e3 100644 --- a/profile/assets/logo.svg +++ b/profile/assets/logo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file