2024-10-06 11:41:27 +02:00
|
|
|
---
|
2025-02-16 12:01:51 +01:00
|
|
|
import ProjectGrid from "./ProjectGrid.astro"
|
2024-10-20 12:05:32 +02:00
|
|
|
import { type CollectionEntry } from "astro:content"
|
2024-10-06 11:41:27 +02:00
|
|
|
|
|
|
|
interface Props {
|
2024-10-20 12:05:32 +02:00
|
|
|
projects: CollectionEntry<"projects">[]
|
2024-10-06 11:41:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const { projects } = Astro.props
|
|
|
|
---
|
|
|
|
|
2025-02-16 12:01:51 +01:00
|
|
|
<ProjectGrid projects={projects} />
|