--- import type { DocsEntry } from "@/types"; import { Image } from "astro:assets"; interface Props { entry: DocsEntry; } const { entry } = Astro.props; const { title, image, imageAlt } = entry.data; ---