--- import { ClientRouter } from "astro:transitions"; import "../global.css"; import Footer from "@components/Footer.astro"; import Header from "@components/Header/Header.astro"; export interface Props { title: string; frontmatter?: { title: string; }; } const title = Astro.props.title || Astro.props.frontmatter?.title || "Unknown"; ---