All checks were successful
Build and deploy website / build (push) Successful in 34s
13 lines
241 B
Plaintext
13 lines
241 B
Plaintext
---
|
|
import ProjectGrid from "./ProjectGrid.astro"
|
|
import { type CollectionEntry } from "astro:content"
|
|
|
|
interface Props {
|
|
projects: CollectionEntry<"projects">[]
|
|
}
|
|
|
|
const { projects } = Astro.props
|
|
---
|
|
|
|
<ProjectGrid projects={projects} />
|