--- import { Image } from 'astro:assets'; import type { CollectionEntry } from 'astro:content'; import BaseHead from '../components/BaseHead.astro'; import Footer from '../components/Footer.astro'; import Header from '../components/Header.astro'; type Props = CollectionEntry<'album'>['data']; const { title, description, cover, } = Astro.props; ---