import { projects } from "./projects"; export function getProjectBySlug(slug: string) { return projects.find((p) => p.slug === slug); }