--- import { getCollection, getEntry } from 'astro:content'; import homepageData from '../../content/homepage.json'; import '../../styles/global.css'; const { slug } = Astro.params; if (!slug) { return Astro.redirect('/404'); } const post = await getEntry('posts', slug); if (!post) { return Astro.redirect('/404'); } const { Content } = await post.render(); ---