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