All checks were successful
Build and deploy website / build (push) Successful in 39s
- Code style is Catppuccin Mocha - Added lang tag to project - Added keywords to project - Sort projects by latest updated
9 lines
187 B
Plaintext
9 lines
187 B
Plaintext
---
|
|
import { getCollection } from "astro:content"
|
|
import ProjectGrid from "./ProjectGrid.astro"
|
|
|
|
const projects = await getCollection("projects")
|
|
---
|
|
|
|
<ProjectGrid projects={projects} />
|