--- import Icon from '@components/molecules/Icon.svelte'; interface Props { links: { title: string; url: string; icon: string; isCta: boolean; }[]; } const { links } = Astro.props; ---