-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
47 lines (42 loc) · 1.08 KB
/
types.ts
File metadata and controls
47 lines (42 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
export interface Project {
id: string;
title: string;
description: string; // Short summary/Subtitle
valueProposition: string; // "2-sentence value proposition"
achievement: string; // "Brief bullet point of primary achievement"
techStack: string[];
imageUrl: string;
repoUrl?: string;
demoUrl?: string;
// Deep Dive Content
problem?: string;
challenges?: string;
codeSnippet?: {
language: string;
code: string;
};
gallery?: string[]; // Additional images
details: string; // The full narrative or architecture description
// Engineering Specs (New)
complexity?: 'Medium' | 'High' | 'Very High' | 'Research Grade';
linesOfCode?: string; // e.g., "12k+ LOC"
architecture?: string[]; // e.g., ["BLoC Pattern", "Microservices"]
}
export interface Experience {
id: string;
role: string;
company: string;
location?: string;
period: string;
description: string[];
}
export interface SkillCategory {
name: string;
skills: string[];
}
export interface ChatMessage {
id: string;
role: 'user' | 'model';
text: string;
timestamp: number;
}