--- interface Props { title?: string; message?: string; icon?: string; actionLabel?: string; actionHref?: string; } const { title = "Keine Einträge gefunden", message = "Es gibt noch keine Inhalte in dieser Kategorie.", icon = "📝", actionLabel, actionHref } = Astro.props; ---