--- import { Image } from 'astro:assets' import wideCrossIconSrc from '@/assets/icons/WideCrossIcon.svg' type Props = { texts: string[] } const { texts } = Astro.props const repeatedTexts = texts.length < 10 ? Array.from({ length: 10 / texts.length }, () => texts).flat() : texts ---