--- import GuideContent from '../../components/Guide/GuideContent.astro'; import GuideHeader from '../../components/GuideHeader.astro'; import BaseLayout from '../../layouts/BaseLayout.astro'; import { getGuideById } from '../../lib/guide'; import { getOpenGraphImageUrl } from '../../lib/open-graph'; import { replaceVariables } from '../../lib/markdown'; const guideId = 'full-stack-developer-skills'; const guide = await getGuideById(guideId); const { frontmatter: guideData } = guide!; const ogImageUrl = guideData.seo.ogImageUrl || getOpenGraphImageUrl({ group: 'guide', resourceId: guideId, }); ---