import type { Language } from "./constants"; export type Project = { name: string; description: string; languages: Language[]; links: { source?: string; live?: string; /** the link to the relevant page on this site */ internal?: string; }; };