"use client"; import { ProjectCard } from "@/components/ProjectCard"; import type { Project } from "@/data/projects"; interface MasonryGridProps { projects: Project[]; } export function MasonryGrid({ projects }: MasonryGridProps) { return (