Latest projects on landing page, moved landing page components
All checks were successful
Build and deploy website / build (push) Successful in 34s

This commit is contained in:
2025-02-16 12:01:51 +01:00
parent 22cdc634f9
commit e1c3ae7d87
7 changed files with 57 additions and 29 deletions

View File

@ -0,0 +1,10 @@
---
import { getCollection } from "astro:content"
import ProjectGrid from "@/components/projects/ProjectGrid.astro"
const projects = await getCollection("projects")
---
<div class="divider"></div>
<ProjectGrid projects={projects} />