--- import SiteHeader from "@/components/SiteHeader.astro"; import SiteFooter from "@/components/SiteFooter.astro"; import "@/styles/global.css"; interface Props { title: string; description: string; section?: string; } const { title, description, section = "", } = Astro.props; const pageTitle = title === "LLM Atlas" ? title : `${title}|LLM Atlas`; ---