--- import '@styles/global.scss'; import '@styles/fonts.scss'; import { ViewTransitions } from 'astro:transitions'; const repository_url = `https://github.com/${import.meta.env.PUBLIC_VERCEL_GIT_REPO_SLUG}/${import.meta.env.PUBLIC_VERCEL_GIT_REPO_OWNER}/` const build_revision = import.meta.env.PUBLIC_VERCEL_GIT_COMMIT_SHA; interface Props { title?: string; } const { title } = Astro.props; const titleTag = title != undefined ? `${title} | xevion.blog` : 'xevion.blog'; ---