--- import type { MarkdownInstance } from 'astro'; import type { Project } from '../types'; interface Props { project: MarkdownInstance; } const { frontmatter, url } = Astro.props.project; ---

{frontmatter.title}

{frontmatter.description}

Tagged: { frontmatter.tags.map((t) => (
{t}
)) }
View