From 5e87d07918c3aa20cd2443c96cb995ef14ce4990 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Sun, 30 Nov 2025 16:21:47 -0600 Subject: [PATCH 1/5] perf: Make scrolling header image smaller Now that we know the `.container` can be 60rem max, we can safely use a smaller size for the header images, reducing page size by 100kb on average based on my testing. --- layouts/partials/scrolling-image-header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/scrolling-image-header.html b/layouts/partials/scrolling-image-header.html index 60d5187..57950b6 100644 --- a/layouts/partials/scrolling-image-header.html +++ b/layouts/partials/scrolling-image-header.html @@ -1,6 +1,6 @@ {{ $thumbnailImage := .Resources.GetMatch "*thumbnail*" }} {{ with $thumbnailImage }} - {{ $croppedImage := $thumbnailImage.Fill "1500x500 center" }} + {{ $croppedImage := $thumbnailImage.Fill "960x320 center" }}