--- import MainGridLayout from '../layouts/MainGridLayout.astro' import { getEntry } from 'astro:content' import { i18n } from '../i18n/translation' import I18nKey from '../i18n/i18nKey' import Markdown from '@components/misc/Markdown.astro' import { render } from 'astro:content' const aboutPost = await getEntry('spec', 'about') if (!aboutPost) { throw new Error("About page content not found"); } const { Content } = await render(aboutPost) ---