--- import translate from '$i18n/translate'; import tNewsPreviewLink from '$i18n/translations/components/newsPreviewLink'; import type Locale from '$types/Locale'; import type { CollectionEntry } from 'astro:content'; interface Props { locale: Locale; newsItem: CollectionEntry<'news'>; } const { locale, newsItem } = Astro.props; const t = translate(locale); ---

{newsItem.data.title}

{newsItem.data.summary}