--- import { Image } from 'astro:assets'; import ScrollIndicator from './ScrollIndicator.astro'; interface Props { title: string; description?: string; date?: Date; tags?: string[]; coverImage?: ImageMetadata; scrollTarget?: string; } const { title, description, date, tags, coverImage, scrollTarget = '.info-section' } = Astro.props; --- {coverImage && (