fix(index): icons location

This commit is contained in:
z0x 2025-01-05 00:45:52 -05:00
parent 8f46506e0e
commit 0185a10711
18 changed files with 2 additions and 6 deletions

View file

@ -8,7 +8,7 @@ const { serviceName, serviceUrl } = Astro.props;
const formattedName = serviceName.toLowerCase().replace(/\s+/g, "-");
const svgFile = `/src/icons/${formattedName}.svg`;
const svgFile = `/icons/${formattedName}.svg`;
const defaultDomain = "home.arpa";
const href = serviceUrl ?? `https://${formattedName}.${defaultDomain}`;