11 lines
236 B
Plaintext
11 lines
236 B
Plaintext
|
---
|
||
|
import { getCollection } from "astro:content"
|
||
|
import ProjectGrid from "@/components/projects/ProjectGrid.astro"
|
||
|
|
||
|
const projects = await getCollection("projects")
|
||
|
---
|
||
|
|
||
|
<div class="divider"></div>
|
||
|
|
||
|
<ProjectGrid projects={projects} />
|