--- import type { 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 modifiedTime?: string; readonly ogType?: "website" | "article"; readonly preview: string; readonly publishedTime?: string; readonly robots?: string; readonly schema: Thing[]; readonly title: string; }; const { description, lang, modifiedTime, ogType, preview, publishedTime, robots, schema, title } = Astro.props; ---