2024-10-06 11:41:27 +02:00
|
|
|
---
|
2025-02-27 21:13:01 +01:00
|
|
|
import { getCollection } from "astro:content"
|
2025-02-16 12:01:51 +01:00
|
|
|
import ProjectGrid from "./ProjectGrid.astro"
|
2024-10-06 11:41:27 +02:00
|
|
|
|
2025-02-27 21:13:01 +01:00
|
|
|
const projects = await getCollection("projects")
|
2024-10-06 11:41:27 +02:00
|
|
|
---
|
|
|
|
|
2025-02-16 12:01:51 +01:00
|
|
|
<ProjectGrid projects={projects} />
|