From 94988bcb73e91db48e98213cc19a7a1a9e4d3bda Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Mon, 9 Feb 2026 15:19:49 -0600 Subject: [PATCH] feat: increase default SrJuggernautLogo size to 600x600 --- src/components/SrJuggernautLogo.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SrJuggernautLogo.astro b/src/components/SrJuggernautLogo.astro index cd1560d..b2891d4 100644 --- a/src/components/SrJuggernautLogo.astro +++ b/src/components/SrJuggernautLogo.astro @@ -4,7 +4,7 @@ interface Props { height?: number className?: string } -const { width = 200, height = 200, className } = Astro.props +const { width = 600, height = 600, className } = Astro.props ---