---
import { getEntry } from 'astro:content';
import Layout from '../layouts/Layout.astro';
const intro = await getEntry('docs', 'intro');
if (!intro) {
return Astro.redirect('/404');
}
const { Content } = await intro.render();
---
{intro.data.title}