export type Project = { id: string; title: string; description: string; tags: string[]; image?: string; liveUrl?: string; githubUrl?: string; featured?: boolean; }; export const projects: Project[] = [ ];