--- import Analytics from "../components/Analytics.astro"; import Footer from "../components/Footer.astro"; import Head from "../components/Head.astro"; import Header from "../components/Header.astro"; import "../scss/global.scss"; type Props = { readonly description?: string; readonly title?: string; }; const { description, title } = Astro.props; ---