--- import { sourceSlug } from '../lib/sources'; interface Props { source: string; prefix?: string; } const { source, prefix = 'via' } = Astro.props; const href = `/sources/#${sourceSlug(source)}`; --- {prefix} {source}