--- import { ViewTransitions } from "astro:transitions"; import Header from "../components/Header.astro"; import { cn } from "../lib/utils"; import "../styles/global.css"; interface Props { title: string; description: string; image?: string; className?: string; } const canonicalURL = new URL(Astro.url.pathname, Astro.site); const { title, description, image = "/static/blog-placeholder.png", className, } = Astro.props; ---