at main 460 B view raw
1/** 2 * Case study and project type definitions 3 */ 4 5import type { BaseContent } from './defineBase'; 6 7export type ProjectType = 'design-operations' | 'design-strategy' | 'product-design' | 'service-design'; 8 9export interface CaseStudy extends BaseContent { 10 name: string; 11 summary: string; 12 body?: string; 13 pitchEmbed?: string; 14 coverImage?: string; 15 type: ProjectType; 16 endDate: string; 17 role: string; 18 company: string; 19 relevantSkills: string[]; 20}