diff --git a/public/cdn/Hosted-Cloudflare-#F48120.svg b/public/cdn/cf.svg similarity index 100% rename from public/cdn/Hosted-Cloudflare-#F48120.svg rename to public/cdn/cf.svg diff --git a/public/cdn/Hosted-EdgeOne-#00a3ff.svg b/public/cdn/eo.svg similarity index 100% rename from public/cdn/Hosted-EdgeOne-#00a3ff.svg rename to public/cdn/eo.svg diff --git a/public/cdn/Hosted-ESA-#FF6A00.svg b/public/cdn/esa.svg similarity index 100% rename from public/cdn/Hosted-ESA-#FF6A00.svg rename to public/cdn/esa.svg diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 84ad75062..c0b888585 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -95,11 +95,11 @@ try { let iconSrc = null; if (serverLower.includes('esa')) { - iconSrc = '/cdn/Hosted-ESA-#FF6A00.svg'; + iconSrc = '/cdn/esa.svg'; } else if (serverLower.includes('edgeone')) { - iconSrc = '/cdn/Hosted-EdgeOne-#00a3ff.svg'; + iconSrc = '/cdn/eo.svg'; } else if (serverLower.includes('cloudflare')) { - iconSrc = '/cdn/Hosted-Cloudflare-#F48120.svg'; + iconSrc = '/cdn/cf.svg'; } if (iconSrc) {