I have a layout in which the file name is ProjectItemLayout.astro. Inside I want to reference a .md file and push to that page. How could I do that? You will see them referenced as:
<a href={terms}>Terms of Service</a>
<a href={privacy}>Privacy Policy</a>
<BaseLayout title={title} description={description} image={heroImage}>
<main class="md:flex md:justify-center">
<article class="prose prose-lg max-w-[750px] prose-img:mx-auto">
{
heroImage && (
<Image width={750} height={422} format="webp" src={heroImage} alt={title} class="w-full mb-6" />
)
}
<div class="flex items-center justify-between">
<h1 class="title my-2 text-4xl font-bold">
{title}
{badge && <div class="badge badge-secondary mx-2">{badge}</div>}
</h1>
<div>
<a class="" href={checkoutUrl} target="_blank">
<img class="w-40" src="/public/app_store.svg" alt="Download on App Store">
</a>
<a href={terms}>Terms of Service</a>
<a href={privacy}>Privacy Policy</a>
</div>
</div>
<div class="divider my-2"></div>
<slot />
</article>
</main>
</BaseLayout>