Files
martials.no/src/components/landing/LatestProjects.astro
Martin Berg Alstad e1c3ae7d87
All checks were successful
Build and deploy website / build (push) Successful in 34s
Latest projects on landing page, moved landing page components
2025-02-16 12:01:51 +01:00

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} />