{title}
{pubDate && } {updatedDate &&Last updated on
}
--- import BaseHead from "../components/BaseHead.astro"; import Header from "../components/Header.astro"; import Footer from "../components/Footer.astro"; export interface Props { content: { title: string; description: string; pubDate?: string; updatedDate?: string; heroImage?: string; }; } const { content: { title, description, pubDate, updatedDate, heroImage }, } = Astro.props as Props; ---