--- import Head from '@/components/Head.astro' import ThemeToggle from '@/components/ThemeToggle.astro' import themeConfig from '@/config' import '@/styles/global.css' interface Props { postTitle?: string postDescription?: string postImage?: string } const { postTitle, postDescription, postImage } = Astro.props const fontStyle = `font-${themeConfig.global.font}` const colorMode = themeConfig.color.mode ---