--- import BaseHead from "../components/BaseHead.astro"; import Header from "../components/Header.astro"; export interface Props { content: { title: string; description: string; publishDate: string; heroImage?: { src: string; alt: string; }; }; } const { content: { title, description, publishDate, heroImage }, } = Astro.props as Props; ---