-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
46 lines (42 loc) · 804 Bytes
/
Copy pathtypes.ts
File metadata and controls
46 lines (42 loc) · 804 Bytes
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
export interface Project {
id: string;
title: string;
category: string;
tags: string[];
description: string;
problem: string;
solution: string;
impact: string;
image: string;
link?: string;
year: string;
}
export interface Article {
id: string;
title: string;
excerpt: string;
category: string;
readTime: string;
date: string;
}
export interface TechCapability {
name: string;
level: number; // 0-100
category: 'Core' | 'AI/ML' | 'Infrastructure' | 'Frontend';
description: string;
icons: string[];
}
export interface Education {
id: string;
degree: string;
school: string;
date: string;
location: string;
description: string;
}
export enum RoutePath {
HOME = '/',
PROJECTS = '/projects',
ARTICLES = '/articles',
CONTACT = '/contact',
}