--- import BaseHead from '../components/BaseHead.astro'; import FormattedDate from '../components/FormattedDate.astro'; import Navbar from '../components/Navbar.astro'; type Props = { title: string; description?: string; updatedDate?: Date; pubDate: Date; } const { title, description, pubDate, updatedDate } = Astro.props; const canonicalUrl = new URL(Astro.url.pathname, Astro.site); ---

{title}