All checks were successful
Build and deploy website / build (push) Successful in 34s
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} />
|