import type { CollectionEntry } from "astro:content"; import { AnimateIn } from "@/components/animate-in"; interface ProjectListProps { projects: CollectionEntry<"projects">[]; } export function ProjectList({ projects }: ProjectListProps) { return (

Here's what I've been
building lately

); }