--- import type { WithContext, Thing } from "schema-dts"; import Analytics from "../components/Analytics.astro"; import Head from "../components/Head.astro"; import Header from "../components/Header.astro"; import "../scss/global.scss"; type Props = { readonly description: string; readonly lang: string; readonly preview: string; readonly schema: WithContext; readonly title: string; }; const { description, lang, preview, schema, title } = Astro.props; ---