--- import Nav from "./Nav.astro"; import Footer from "./Footer.astro"; import "../styles/global.css"; interface Props { title: string; description?: string; ogType?: "website" | "article"; ogImage?: string; } const { title, description = "A quiet place to read.", ogType = "website", ogImage, } = Astro.props; const canonicalURL = new URL(Astro.url.pathname, Astro.site); const googleVerification = import.meta.env.PUBLIC_GOOGLE_SITE_VERIFICATION; --- {googleVerification && } {title} {ogImage && } {ogImage && }