-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
64 lines (56 loc) · 1.1 KB
/
types.ts
File metadata and controls
64 lines (56 loc) · 1.1 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
export interface ExperienceItem {
role: string;
company: string;
period: string;
location: string;
points: string[];
}
export interface Project {
title: string;
description: string;
tech: string[];
imageUrl: string;
demoUrl?: string;
githubUrl?: string;
githubUrls?: {
frontend?: string;
backend?: string;
};
}
export interface SkillCategory {
name: string;
skills: string[];
icon: React.FC<{ className?: string }>;
}
export interface ChatMessage {
sender: 'user' | 'bot';
text: string;
}
export interface OpenSourceItem {
title: string;
description: string;
icon: React.FC<{ className?: string }>;
}
export interface GitHubStat {
icon: React.FC<{ className?: string }>;
value: string;
label: string;
}
export interface TopLanguage {
name: string;
percentage: number;
color: string;
}
export interface ContactFormData {
name: string;
email: string;
message: string;
phone?: string;
}
export interface Certification {
name: string;
issuer: string;
date: string;
credentialUrl: string;
icon: React.FC<{ className?: string }>;
}