"use client"; import { PROJECTS } from "@/data/content"; import { useStaggerReveal } from "@/hooks/useAnimations"; import ProjectCard from "./ProjectCard"; export default function Projects() { const visible = useStaggerReveal(PROJECTS.length, 100); return (
{"# projects"}

{"Things I've built"}

{PROJECTS.map((project, i) => ( ))}
); }